Class: MiOS::Room

Inherits:
Object
  • Object
show all
Defined in:
lib/mios/room.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(id, name) ⇒ Room

Returns a new instance of Room.



5
6
7
8
# File 'lib/mios/room.rb', line 5

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

Instance Attribute Details

#idObject (readonly)

Returns the value of attribute id.



3
4
5
# File 'lib/mios/room.rb', line 3

def id
  @id
end

#nameObject (readonly)

Returns the value of attribute name.



3
4
5
# File 'lib/mios/room.rb', line 3

def name
  @name
end

Instance Method Details

#to_sObject



10
11
12
# File 'lib/mios/room.rb', line 10

def to_s
  name
end