= private = protected
attr_internal_accessor(*attrs)
Declares an attribute reader and writer backed by an internally-named instance variable.
# File activesupport/lib/active_support/core_ext/module/attr_internal.rb, line 16 def attr_internal_accessor(*attrs) attr_internal_reader(*attrs) attr_internal_writer(*attrs) end