Module: ActiveRecord::AttributeMethods::Query
Relationships & Source Files | |
Extension / Inclusion / Inheritance Descendants | |
Super Chains via Extension / Inclusion / Inheritance | |
Class Chain:
self,
::ActiveSupport::Concern
|
|
Defined in: | activerecord/lib/active_record/attribute_methods/query.rb |
Class Method Summary
::ActiveSupport::Concern - Extended
Instance Method Summary
DSL Calls
included
[ GitHub ]6 7 8
# File 'activerecord/lib/active_record/attribute_methods/query.rb', line 6
included do attribute_method_suffix "?" end
Instance Method Details
#query_attribute(attr_name)
[ GitHub ]# File 'activerecord/lib/active_record/attribute_methods/query.rb', line 10
def query_attribute(attr_name) value = self[attr_name] case value when true then true when false, nil then false else column = self.class.columns_hash[attr_name] if column.nil? if Numeric === value || value !~ /[^0-9]/ !value.to_i.zero? else return false if ActiveRecord::ConnectionAdapters::Column::FALSE_VALUES.include?(value) !value.blank? end elsif column.number? !value.zero? else !value.blank? end end end