instance method superclass_delegating_writer

Ruby on Rails 2.2.3

Since v2.2.3 Last seen in v2.3.18

Available in: v2.2.3 v2.3.18

Signature

superclass_delegating_writer(*names)

No documentation comment.

Parameters

names rest
Source
# File activesupport/lib/active_support/core_ext/class/delegating_attributes.rb, line 32
  def superclass_delegating_writer(*names)
    names.each do |name|
      class_eval <<-EOS
        def self.#{name}=(value)
          @#{name} = value
        end
      EOS
    end
  end

Defined in activesupport/lib/active_support/core_ext/class/delegating_attributes.rb line 32 · View on GitHub · Improve this page · Find usages on GitHub

Defined in Class

Type at least 2 characters to search.

↑↓ navigate · open · esc close