method
superclass_delegating_writer
v2.2.1 -
Show latest stable
- Class:
Class
superclass_delegating_writer(*names)public
No documentation available.
# File activesupport/lib/active_support/core_ext/class/delegating_attributes.rb, line 33
def superclass_delegating_writer(*names)
names.each do |name|
class_eval "def self.\#{name}=(value)\n@\#{name} = value\nend\n"
end
end