Module: HTTParty::ModuleInheritableAttributes::ClassMethods
- Defined in:
- lib/httparty/module_inheritable_attributes.rb
Overview
:nodoc:
Instance Method Summary collapse
Instance Method Details
#inherited(subclass) ⇒ Object
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
# File 'lib/httparty/module_inheritable_attributes.rb', line 17 def inherited(subclass) super @mattr_inheritable_attrs.each do |inheritable_attribute| ivar = "@#{inheritable_attribute}" subclass.instance_variable_set(ivar, instance_variable_get(ivar).clone) if instance_variable_get(ivar).respond_to?(:merge) method = <<-EOM def self.#{inheritable_attribute} #{ivar} = superclass.#{inheritable_attribute}.merge #{ivar} end EOM subclass.class_eval method end end end |
#mattr_inheritable(*args) ⇒ Object
8 9 10 11 12 13 14 15 |
# File 'lib/httparty/module_inheritable_attributes.rb', line 8 def mattr_inheritable(*args) @mattr_inheritable_attrs ||= [:mattr_inheritable_attrs] @mattr_inheritable_attrs += args args.each do |arg| module_eval %(class << self; attr_accessor :#{arg} end) end @mattr_inheritable_attrs end |