Class: Fixnum
- Inherits:
-
Object
- Object
- Fixnum
- Defined in:
- lib/boolean_conversions.rb
Instance Method Summary collapse
Instance Method Details
#to_bool ⇒ Object
12 13 14 15 |
# File 'lib/boolean_conversions.rb', line 12 def to_bool return true if self >= 1 return false if self <= 0 end |