Class: Height::Units::Feet
- Inherits:
-
Base
- Object
- Base
- Height::Units::Feet
show all
- Defined in:
- lib/height/units/feet.rb
Instance Attribute Summary
Attributes inherited from Base
#value
Instance Method Summary
collapse
Methods inherited from Base
#*, #+, #-, #/, #<=>, #initialize, round_value, #to_s, #to_unit
Instance Method Details
#feet ⇒ Object
26
27
28
|
# File 'lib/height/units/feet.rb', line 26
def feet
self.class.new(value.floor)
end
|
#to_centimeters ⇒ Object
18
19
20
|
# File 'lib/height/units/feet.rb', line 18
def to_centimeters
to_millimeters.to_centimeters
end
|
#to_feet ⇒ Object
5
6
7
|
# File 'lib/height/units/feet.rb', line 5
def to_feet
self
end
|
#to_meters ⇒ Object
22
23
24
|
# File 'lib/height/units/feet.rb', line 22
def to_meters
to_millimeters.to_meters
end
|
#to_millimeters ⇒ Object
14
15
16
|
# File 'lib/height/units/feet.rb', line 14
def to_millimeters
to_inches.to_millimeters
end
|