Flowdock
method

superclass_delegating_writer

Importance_0
v2.1.0 - Show latest stable - 0 notes - Class: Class
superclass_delegating_writer(*names) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide 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 "def self.\#{name}=(value)\n@\#{name} = value\nend\n"
    end
  end
Register or log in to add new notes.