Class: OffTheGridTrucks::Vendor

Inherits:
Object
  • Object
show all
Defined in:
lib/off_the_grid_trucks/vendor.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(args) ⇒ Vendor

Returns a new instance of Vendor.



5
6
7
8
# File 'lib/off_the_grid_trucks/vendor.rb', line 5

def initialize(args)
  @id = args.fetch('id') {}
  @name = args.fetch('name') {}
end

Instance Attribute Details

#idObject (readonly)

Returns the value of attribute id.



3
4
5
# File 'lib/off_the_grid_trucks/vendor.rb', line 3

def id
  @id
end

#nameObject (readonly)

Returns the value of attribute name.



3
4
5
# File 'lib/off_the_grid_trucks/vendor.rb', line 3

def name
  @name
end