Class: Fixnum

Inherits:
Object
  • Object
show all
Defined in:
lib/beef/core_ext/fixnum/to_boolean.rb

Instance Method Summary collapse

Instance Method Details

#to_booleanObject Also known as: to_b



3
4
5
6
7
8
# File 'lib/beef/core_ext/fixnum/to_boolean.rb', line 3

def to_boolean
  case self
  when 0 then false
  else true
  end  
end