= private = protected
value_to_boolean(value)
convert something to a boolean
# File activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb, line 125 def self.value_to_boolean(value) return value if value==true || value==false case value.to_s.downcase when "true", "t", "1" then true else false end end