Sha256: 5fb3f398b76808e84b2696b56beeef1e3706a172c20b9c911ce996f5d0d51e9f
Contents?: true
Size: 1.06 KB
Versions: 3
Compression:
Stored size: 1.06 KB
Contents
# frozen_string_literal: true # # Copyright (c) 2018-present, Blue Marble Payroll, LLC # # This source code is licensed under the MIT license found in the # LICENSE file in the root directory of this source tree. # class Toy acts_as_hashable attr_reader :squishy def initialize(opts = {}) @squishy = opts[:squishy] || false end end class Pet acts_as_hashable attr_reader :name, :toy def initialize(opts = {}) @name = opts[:name] @toy = Toy.make(opts[:toy]) end end class Person acts_as_hashable attr_reader :name, :age def initialize(name:, age:) @name = name @age = age end end class HeadOfHousehold acts_as_hashable attr_reader :person, :partner def initialize(person:, partner: nil) @person = Person.make(person) @partner = Person.make(partner) end end class Family acts_as_hashable attr_reader :head_of_household, :children def initialize(head_of_household:, children: []) @head_of_household = HeadOfHousehold.make(head_of_household) @children = Person.array(children) end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
acts_as_hashable-1.0.5 | spec/examples.rb |
acts_as_hashable-1.0.4 | spec/examples.rb |
acts_as_hashable-1.0.3 | spec/examples.rb |