Module: Origin::Extensions::String
- Defined in:
- lib/origin/extensions/string.rb
Overview
This module contains additional object behaviour.
Defined Under Namespace
Modules: ClassMethods
Instance Method Summary collapse
-
#__evolve_date__ ⇒ Time
Evolve the string into a mongodb friendly date.
-
#__evolve_time__ ⇒ Time
Evolve the string into a mongodb friendly time.
-
#__expr_part__(value, negating = false) ⇒ Hash
Get the string as a specification.
-
#__mongo_expression__ ⇒ String
Get the string as a mongo expression, adding $ to the front.
-
#__sort_option__ ⇒ Hash
Get the string as a sort option.
-
#to_direction ⇒ Integer
Get the string as a sort direction.
Instance Method Details
#__evolve_date__ ⇒ Time
Evolve the string into a mongodb friendly date.
16 17 18 19 |
# File 'lib/origin/extensions/string.rb', line 16 def __evolve_date__ time = ::Time.parse(self) ::Time.utc(time.year, time.month, time.day, 0, 0, 0, 0) end |
#__evolve_time__ ⇒ Time
Evolve the string into a mongodb friendly time.
29 30 31 |
# File 'lib/origin/extensions/string.rb', line 29 def __evolve_time__ ::Time.parse(self).utc end |
#__expr_part__(value, negating = false) ⇒ Hash
Get the string as a specification.
73 74 75 |
# File 'lib/origin/extensions/string.rb', line 73 def __expr_part__(value, negating = false) ::String.__expr_part__(self, value, negating) end |
#__mongo_expression__ ⇒ String
Get the string as a mongo expression, adding $ to the front.
41 42 43 |
# File 'lib/origin/extensions/string.rb', line 41 def __mongo_expression__ start_with?("$") ? self : "$#{self}" end |
#__sort_option__ ⇒ Hash
Get the string as a sort option.
53 54 55 56 57 58 59 60 |
# File 'lib/origin/extensions/string.rb', line 53 def __sort_option__ split(/,/).inject({}) do |hash, spec| hash.tap do |_hash| field, direction = spec.strip.split(/\s/) _hash[field.to_sym] = direction.to_direction end end end |
#to_direction ⇒ Integer
Get the string as a sort direction.
85 86 87 |
# File 'lib/origin/extensions/string.rb', line 85 def to_direction self =~ /desc/i ? -1 : 1 end |