Sha256: 371c6d6a6fd3cba5c5f4259265424286eed7f21bfd75213b028d2130a7d840a0
Contents?: true
Size: 561 Bytes
Versions: 33
Compression:
Stored size: 561 Bytes
Contents
Cheese = Struct.new(:id, :flavor, :origin, :fat_content, :source) CHEESES = { 1 => Cheese.new(1, "Brie", "France", 0.19, 1), 2 => Cheese.new(2, "Gouda", "Netherlands", 0.3, 1), 3 => Cheese.new(3, "Manchego", "Spain", 0.065, "SHEEP") } Milk = Struct.new(:id, :fatContent, :origin, :source, :flavors) MILKS = { 1 => Milk.new(1, 0.04, "Antiquity", 1, ["Natural", "Chocolate", "Strawberry"]), } DAIRY = OpenStruct.new( id: 1, cheese: CHEESES[1], milks: [MILKS[1]] ) COW = OpenStruct.new( id: 1, name: "Billy", last_produced_dairy: MILKS[1] )
Version data entries
33 entries across 33 versions & 1 rubygems