Sha256: de61fa044afd3d9711ecdc20e9c7f9dd9df8ea7a30348673d7dc955a77e22f9a

Contents?: true

Size: 253 Bytes

Versions: 30

Compression:

Stored size: 253 Bytes

Contents

# example entity model

class Person

  class Car
    include Gummi::EntityLayer::Entity

    attribute :model, String
  end

  include Gummi::EntityLayer::Entity

  attribute :name, String
  attribute :converted_name, String
  attribute :car, Car

end

Version data entries

30 entries across 30 versions & 1 rubygems

Version Path
gummi-0.3.5 spec/support/models/person.rb
gummi-0.3.4 spec/support/models/person.rb
gummi-0.3.3 spec/support/models/person.rb
gummi-0.3.2 spec/support/models/person.rb
gummi-0.3.1 spec/support/models/person.rb
gummi-0.3.0 spec/support/models/person.rb
gummi-0.2.3 spec/support/models/person.rb
gummi-0.2.2 spec/support/models/person.rb
gummi-0.2.1 spec/fixtures/person.rb
gummi-0.2.0 spec/fixtures/person.rb