Module: Origin::Extensions::String::ClassMethods
- Defined in:
- lib/origin/extensions/string.rb
Instance Method Summary collapse
-
#__expr_part__(key, value, negating = false) ⇒ Hash
Get the value as a expression.
-
#evolve(object) ⇒ String
Evolves the string into a MongoDB friendly value - in this case a string.
Instance Method Details
#__expr_part__(key, value, negating = false) ⇒ Hash
Get the value as a expression.
103 104 105 106 107 108 109 |
# File 'lib/origin/extensions/string.rb', line 103 def __expr_part__(key, value, negating = false) if negating { key => { "$#{value.regexp? ? "not" : "ne"}" => value }} else { key => value } end end |
#evolve(object) ⇒ String
Evolves the string into a MongoDB friendly value - in this case a string.
122 123 124 125 126 |
# File 'lib/origin/extensions/string.rb', line 122 def evolve(object) __evolve__(object) do |obj| obj.regexp? ? obj : obj.to_s end end |