Class: ArelExtensions::Nodes::FormattedDate
- Inherits:
-
Function
- Object
- Arel::Nodes::Function
- Function
- ArelExtensions::Nodes::FormattedDate
- Defined in:
- lib/arel_extensions/nodes/formatted_date.rb
Constant Summary collapse
- RETURN_TYPE =
:string
Constants inherited from Function
ArelExtensions::Nodes::Function::MBSTRING
Instance Attribute Summary collapse
-
#col_type ⇒ Object
Returns the value of attribute col_type.
-
#iso_format ⇒ Object
Returns the value of attribute iso_format.
-
#time_zone ⇒ Object
Returns the value of attribute time_zone.
Instance Method Summary collapse
-
#initialize(expr) ⇒ FormattedDate
constructor
A new instance of FormattedDate.
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) ⇒ FormattedDate
Returns a new instance of FormattedDate.
10 11 12 13 14 15 16 |
# File 'lib/arel_extensions/nodes/formatted_date.rb', line 10 def initialize expr col = expr[0] @iso_format = convert_format(expr[1]) @time_zone = expr[2] @col_type = type_of_attribute(col) super [col, convert_to_string_node(@iso_format)] end |
Instance Attribute Details
#col_type ⇒ Object
Returns the value of attribute col_type.
8 9 10 |
# File 'lib/arel_extensions/nodes/formatted_date.rb', line 8 def col_type @col_type end |
#iso_format ⇒ Object
Returns the value of attribute iso_format.
8 9 10 |
# File 'lib/arel_extensions/nodes/formatted_date.rb', line 8 def iso_format @iso_format end |
#time_zone ⇒ Object
Returns the value of attribute time_zone.
8 9 10 |
# File 'lib/arel_extensions/nodes/formatted_date.rb', line 8 def time_zone @time_zone end |