instance method
superclass_delegating_writer
Ruby on Rails 2.3.18
Since v2.2.3 Last seen in v2.3.18Available in: v2.2.3 v2.3.18
Signature
superclass_delegating_writer(*names)
No documentation comment.
Parameters
-
namesrest
Source
# File activesupport/lib/active_support/core_ext/class/delegating_attributes.rb, line 33
def superclass_delegating_writer(*names)
names.each do |name|
class_eval <<-EOS
def self.#{name}=(value) # def self.only_writer=(value)
@#{name} = value # @only_writer = value
end # end
EOS
end
end
Defined in activesupport/lib/active_support/core_ext/class/delegating_attributes.rb line 33
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in Class