Class: ArelExtensions::Nodes::DateSub
- Inherits:
-
Function
- Object
- Arel::Nodes::Function
- Function
- ArelExtensions::Nodes::DateSub
- Defined in:
- lib/arel_extensions/nodes/date_diff.rb
Overview
difference entre colonne date et date string/date
Constant Summary collapse
- RETURN_TYPE =
:integer
Constants inherited from Function
Instance Method Summary collapse
- #convert_number(object) ⇒ Object
-
#initialize(expr) ⇒ DateSub
constructor
A new instance of DateSub.
Methods inherited from Function
#!=, #==, #as, #convert_to_date_node, #convert_to_datetime_node, #convert_to_node, #convert_to_number, #convert_to_string_node, #expr, #left, #return_type, #right, #type_of_attribute
Methods included from Predications
#cast, #convert_to_node, #imatches, #in, #matches, #not_in, #when
Methods inherited from Arel::Nodes::Function
Methods included from ArelExtensions::NullFunctions
#coalesce, #coalesce_blank, #if_present, #is_not_null, #is_null
Methods included from BooleanFunctions
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 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
Constructor Details
#initialize(expr) ⇒ DateSub
Returns a new instance of DateSub.
192 193 194 |
# File 'lib/arel_extensions/nodes/date_diff.rb', line 192 def initialize(expr) super [expr.first, convert_number(expr[1])] end |
Instance Method Details
#convert_number(object) ⇒ Object
196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
# File 'lib/arel_extensions/nodes/date_diff.rb', line 196 def convert_number(object) case object when Arel::Attributes::Attribute, Arel::Nodes::Node, Integer object when String object.to_i else if defined?(ActiveSupport::Duration) && ActiveSupport::Duration === object object.to_i else raise(ArgumentError, "#{object.class} cannot be converted to Number") end end end |