Class: Boolean

Inherits:
Object show all
Defined in:
lib/mongo_mapper/support.rb

Class Method Summary collapse

Class Method Details

.from_mongo(value) ⇒ Object



37
38
39
# File 'lib/mongo_mapper/support.rb', line 37

def self.from_mongo(value)
  !!value
end

.to_mongo(value) ⇒ Object



29
30
31
32
33
34
35
# File 'lib/mongo_mapper/support.rb', line 29

def self.to_mongo(value)
  if value.is_a?(Boolean)
    value
  else
    ['true', 't', '1'].include?(value.to_s.downcase)
  end
end