Method: BBLib::SimpleInit::ClassMethods#_super_collect_method
- Defined in:
- lib/bblib/core/mixins/simple_init.rb
#_super_collect_method ⇒ Object
121 122 123 124 125 126 127 |
# File 'lib/bblib/core/mixins/simple_init.rb', line 121 def _super_collect_method ancestors.each do |ancestor| next if ancestor == self return ancestor.collect_method if ancestor.respond_to?(:collect_method) end :attributes end |