jeremyw (owner)

Revisions

gist: 218089 Download_button fork
public
Public Clone URL: git://gist.github.com/218089.git
Embed All Files: show embed
delegation.rb #
1
2
3
4
5
6
7
8
9
10
class Module
  # Delegates getter and setter for given attributes.
  def delegate_accessors(*attribs)
    options = attribs.pop
    attribs.each do |attrib|
      delegate attrib, options
      delegate "#{attrib}=", options
    end
  end
end