= private = protected
attr_internal_writer(*attrs)
Declares an attribute writer backed by an internally-named instance variable.
# File activesupport/lib/active_support/core_ext/module/attr_internal.rb, line 10 def attr_internal_writer(*attrs) attrs.each { |attr_name| attr_internal_define(attr_name, :writer) } end