Module: Origin::Extensions::Array
- Defined in:
- lib/origin/extensions/array.rb
Overview
The array module adds custom behaviour for Origin onto the Array class.
Defined Under Namespace
Modules: ClassMethods
Instance Method Summary collapse
-
#__add__(object) ⇒ Object
Combine the two objects using the add strategy.
-
#__array__ ⇒ Array
Return the object as an array.
-
#__deep_copy__ ⇒ Array
Makes a deep copy of the array, deep copying every element inside the array.
-
#__evolve_date__ ⇒ Array<Time>
Evolve the array into an array of mongo friendly dates.
-
#__evolve_time__ ⇒ Array<Time>
Evolve the array to an array of times.
-
#__expand_complex__ ⇒ Array
Get the object as expanded.
-
#__intersect__(object) ⇒ Object
Combine the two objects using an intersection strategy.
-
#__sort_option__ ⇒ Hash
Gets the array as options in the proper format to pass as MongoDB sort criteria.
-
#__sort_pair__ ⇒ Hash
Get the array as a sort pair.
-
#update_values(&block) ⇒ Array
Update all the values in the hash with the provided block.
Instance Method Details
#__add__(object) ⇒ Object
Combine the two objects using the add strategy.
18 19 20 |
# File 'lib/origin/extensions/array.rb', line 18 def __add__(object) object.__add_from_array__(self) end |
#__array__ ⇒ Array
Return the object as an array.
30 |
# File 'lib/origin/extensions/array.rb', line 30 def __array__; self; end |
#__deep_copy__ ⇒ Array
Makes a deep copy of the array, deep copying every element inside the array.
41 42 43 |
# File 'lib/origin/extensions/array.rb', line 41 def __deep_copy__ map { |value| value.__deep_copy__ } end |
#__evolve_date__ ⇒ Array<Time>
Evolve the array into an array of mongo friendly dates. (Times at midnight).
54 55 56 |
# File 'lib/origin/extensions/array.rb', line 54 def __evolve_date__ map { |value| value.__evolve_date__ } end |
#__evolve_time__ ⇒ Array<Time>
Evolve the array to an array of times.
80 81 82 |
# File 'lib/origin/extensions/array.rb', line 80 def __evolve_time__ map { |value| value.__evolve_time__ } end |
#__expand_complex__ ⇒ Array
Get the object as expanded.
66 67 68 69 70 |
# File 'lib/origin/extensions/array.rb', line 66 def map do |value| value. end end |
#__intersect__(object) ⇒ Object
Combine the two objects using an intersection strategy.
94 95 96 |
# File 'lib/origin/extensions/array.rb', line 94 def __intersect__(object) object.__intersect_from_array__(self) end |
#__sort_option__ ⇒ Hash
Gets the array as options in the proper format to pass as MongoDB sort criteria.
107 108 109 110 111 112 |
# File 'lib/origin/extensions/array.rb', line 107 def __sort_option__ multi.inject({}) do |, criteria| .merge!(criteria.__sort_pair__) end end |
#__sort_pair__ ⇒ Hash
Get the array as a sort pair.
122 123 124 |
# File 'lib/origin/extensions/array.rb', line 122 def __sort_pair__ { first => last.to_direction } end |
#update_values(&block) ⇒ Array
Update all the values in the hash with the provided block.
136 137 138 |
# File 'lib/origin/extensions/array.rb', line 136 def update_values(&block) replace(map(&block)) end |