Method: Pgai::Resources::Attributes::ClassMethods#inherited

Defined in:
lib/pgai/resources/attributes.rb

#inherited(subclass) ⇒ Object



52
53
54
55
56
# File 'lib/pgai/resources/attributes.rb', line 52

def inherited(subclass)
  attributes.each do |attr|
    subclass.attribute attr.name, attr.type, default: attr.default
  end
end