Class: Dryrun::Device

Inherits:
Object
  • Object
show all
Defined in:
lib/dryrun/device.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name, id) ⇒ Device

Returns a new instance of Device.



5
6
7
8
# File 'lib/dryrun/device.rb', line 5

def initialize(name, id)
  @name = name
  @id = id
end

Instance Attribute Details

#idObject

Returns the value of attribute id.



3
4
5
# File 'lib/dryrun/device.rb', line 3

def id
  @id
end

#nameObject

Returns the value of attribute name.



3
4
5
# File 'lib/dryrun/device.rb', line 3

def name
  @name
end