Class: Object

Inherits:
BasicObject
Defined in:
lib/helpers/core_ext/to_b.rb

Instance Method Summary collapse

Instance Method Details

#to_bObject



2
3
4
5
6
7
8
9
# File 'lib/helpers/core_ext/to_b.rb', line 2

def to_b
  case self
  when true, false then self
  when nil then false
  else
    to_i != 0
  end
end