cubicle 0.1.20 → 0.1.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG.rdoc +5 -0
- data/cubicle.gemspec +8 -2
- data/lib/cubicle.rb +2 -0
- data/lib/cubicle/aggregation/aggregation_manager.rb +38 -70
- data/lib/cubicle/aggregation/aggregation_metadata.rb +121 -0
- data/lib/cubicle/aggregation/cubicle_metadata.rb +30 -0
- data/lib/cubicle/aggregation/dsl.rb +1 -1
- data/lib/cubicle/version.rb +1 -1
- data/test/cubicle/aggregation/aggregation_metadata_test.rb +89 -0
- data/test/cubicle/aggregation/cubicle_metadata_test.rb +9 -0
- data/test/cubicle/cubicle_aggregation_test.rb +13 -11
- data/test/cubicle/cubicle_query_test.rb +1 -1
- data/test/cubicle/mongo_mapper/aggregate_plugin_test.rb +2 -6
- data/test/log/test.log +84495 -1228
- metadata +9 -3
metadata
CHANGED
|
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 0
|
|
7
7
|
- 1
|
|
8
|
-
-
|
|
9
|
-
version: 0.1.
|
|
8
|
+
- 21
|
|
9
|
+
version: 0.1.21
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- Nathan Stults
|
|
@@ -14,7 +14,7 @@ autorequire:
|
|
|
14
14
|
bindir: bin
|
|
15
15
|
cert_chain: []
|
|
16
16
|
|
|
17
|
-
date: 2010-05-
|
|
17
|
+
date: 2010-05-05 00:00:00 -07:00
|
|
18
18
|
default_executable:
|
|
19
19
|
dependencies:
|
|
20
20
|
- !ruby/object:Gem::Dependency
|
|
@@ -78,7 +78,9 @@ files:
|
|
|
78
78
|
- lib/cubicle/aggregation.rb
|
|
79
79
|
- lib/cubicle/aggregation/ad_hoc.rb
|
|
80
80
|
- lib/cubicle/aggregation/aggregation_manager.rb
|
|
81
|
+
- lib/cubicle/aggregation/aggregation_metadata.rb
|
|
81
82
|
- lib/cubicle/aggregation/aggregation_view.rb
|
|
83
|
+
- lib/cubicle/aggregation/cubicle_metadata.rb
|
|
82
84
|
- lib/cubicle/aggregation/dsl.rb
|
|
83
85
|
- lib/cubicle/aggregation/map_reduce_helper.rb
|
|
84
86
|
- lib/cubicle/bucketized_dimension.rb
|
|
@@ -106,6 +108,8 @@ files:
|
|
|
106
108
|
- lib/cubicle/version.rb
|
|
107
109
|
- test/config/database.yml
|
|
108
110
|
- test/cubicle/aggregation/ad_hoc_test.rb
|
|
111
|
+
- test/cubicle/aggregation/aggregation_metadata_test.rb
|
|
112
|
+
- test/cubicle/aggregation/cubicle_metadata_test.rb
|
|
109
113
|
- test/cubicle/bucketized_dimension_test.rb
|
|
110
114
|
- test/cubicle/cubicle_aggregation_test.rb
|
|
111
115
|
- test/cubicle/cubicle_query_test.rb
|
|
@@ -152,6 +156,8 @@ specification_version: 3
|
|
|
152
156
|
summary: Pseudo-Multi Dimensional analysis / simplified aggregation for MongoDB in Ruby (NOLAP ;))
|
|
153
157
|
test_files:
|
|
154
158
|
- test/cubicle/aggregation/ad_hoc_test.rb
|
|
159
|
+
- test/cubicle/aggregation/aggregation_metadata_test.rb
|
|
160
|
+
- test/cubicle/aggregation/cubicle_metadata_test.rb
|
|
155
161
|
- test/cubicle/bucketized_dimension_test.rb
|
|
156
162
|
- test/cubicle/cubicle_aggregation_test.rb
|
|
157
163
|
- test/cubicle/cubicle_query_test.rb
|