Displaying 1 result from an estimated 1 matches for "powertoas".
Did you mean:
  powerloss
  
2010 Sep 02
1
ActiveRecord::ConnectionAdapters::Column value_to_boolean(value) does not return a boolean value.
value_to_boolean(value), does not always return a boolean value, only
when true.
150:         def value_to_boolean(value)
151:           if value.is_a?(String) && value.blank?
152:             nil
153:           else
154:             TRUE_VALUES.include?(value)
155:           end
156:         end
If  value is contained in TRUE_VALUES then it returns true(TrueClass).
But if value is