Module: ArelExtensions::Attributes
- Includes:
- Aliases, Comparators, DateDuration, Math, MathFunctions, NullFunctions, Predications, StringFunctions
- Included in:
- Arel::Attributes::Attribute, Arel::Nodes::Binary, Arel::Nodes::Unary
- Defined in:
- lib/arel_extensions/attributes.rb
Constant Summary collapse
- @@warn_eqeq =
true
- @@warn_noteq =
true
Instance Method Summary collapse
Methods included from Predications
#cast, #convert_to_node, #imatches, #in, #matches, #not_in, #when
Methods included from StringFunctions
#&, #[], #ai_collate, #ai_imatches, #ai_matches, #blank, #byte_length, #char_length, #ci_collate, #collate, #concat, #downcase, #edit_distance, #group_concat, #idoes_not_match, #idoes_not_match_all, #idoes_not_match_any, #imatches, #imatches_all, #imatches_any, #length, #levenshtein_distance, #locate, #ltrim, #md5, #not_blank, #regexp_replace, #repeat, #replace, #rtrim, #smatches, #soundex, #substring, #trim, #upcase
Methods included from NullFunctions
#coalesce, #coalesce_blank, #if_present, #is_not_null, #is_null
Methods included from MathFunctions
#*, #/, #abs, #ceil, #floor, #format_number, #log10, #pow, #power, #round, #std, #sum, #variance
Methods included from DateDuration
#day, #format, #format_date, #hour, #minute, #month, #second, #wday, #week, #year
Methods included from Comparators
Methods included from Math
Methods included from Aliases
Instance Method Details
#!=(other) ⇒ Object
32 33 34 35 36 37 38 |
# File 'lib/arel_extensions/attributes.rb', line 32 def !=(other) if Gem::Version.create(ArelExtensions::VERSION) >= Gem::Version.create('2.2') && @@warn_noteq warn("[#{caller(0..0)[0]}] arel_extensions: `!=` is now deprecated and will be removed soon. Use `.not_eq` instead.") @@warn_noteq = false end Arel::Nodes::NotEqual.new self, Arel.quoted(other, self) end |
#==(other) ⇒ Object
24 25 26 27 28 29 30 |
# File 'lib/arel_extensions/attributes.rb', line 24 def ==(other) if Gem::Version.create(ArelExtensions::VERSION) >= Gem::Version.create('2.2') && @@warn_eqeq warn("[#{caller(0..0)[0]}] arel_extensions: `==` is now deprecated and will be removed soon. Use `.eq` instead.") @@warn_eqeq = false end Arel::Nodes::Equality.new self, Arel.quoted(other, self) end |