cubicle 0.1.7 → 0.1.8
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.rdoc +7 -0
- data/cubicle.gemspec +5 -2
- data/lib/cubicle.rb +48 -47
- data/lib/cubicle/aggregation/aggregation_manager.rb +1 -1
- data/lib/cubicle/aggregation/dsl.rb +7 -0
- data/lib/cubicle/bucketized_dimension.rb +70 -0
- data/lib/cubicle/member.rb +1 -1
- data/lib/cubicle/version.rb +1 -1
- data/test/cubicle/bucketized_dimension_test.rb +24 -0
- data/test/cubicle/cubicle_aggregation_test.rb +7 -2
- data/test/cubicle/cubicle_query_test.rb +13 -13
- data/test/cubicles/defect_cubicle.rb +16 -1
- data/test/log/test.log +12802 -0
- data/test/models/defect.rb +1 -1
- metadata +6 -3
data/test/models/defect.rb
CHANGED
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
|
+
- 8
|
9
|
+
version: 0.1.8
|
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-04-
|
17
|
+
date: 2010-04-08 00:00:00 -07:00
|
18
18
|
default_executable:
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
@@ -80,6 +80,7 @@ files:
|
|
80
80
|
- lib/cubicle/aggregation/aggregation_manager.rb
|
81
81
|
- lib/cubicle/aggregation/dsl.rb
|
82
82
|
- lib/cubicle/aggregation/map_reduce_helper.rb
|
83
|
+
- lib/cubicle/bucketized_dimension.rb
|
83
84
|
- lib/cubicle/calculated_measure.rb
|
84
85
|
- lib/cubicle/data.rb
|
85
86
|
- lib/cubicle/data/hierarchy.rb
|
@@ -103,6 +104,7 @@ files:
|
|
103
104
|
- lib/cubicle/version.rb
|
104
105
|
- test/config/database.yml
|
105
106
|
- test/cubicle/aggregation/ad_hoc_test.rb
|
107
|
+
- test/cubicle/bucketized_dimension_test.rb
|
106
108
|
- test/cubicle/cubicle_aggregation_test.rb
|
107
109
|
- test/cubicle/cubicle_query_test.rb
|
108
110
|
- test/cubicle/data/data_test.rb
|
@@ -148,6 +150,7 @@ specification_version: 3
|
|
148
150
|
summary: Pseudo-Multi Dimensional analysis / simplified aggregation for MongoDB in Ruby (NOLAP ;))
|
149
151
|
test_files:
|
150
152
|
- test/cubicle/aggregation/ad_hoc_test.rb
|
153
|
+
- test/cubicle/bucketized_dimension_test.rb
|
151
154
|
- test/cubicle/cubicle_aggregation_test.rb
|
152
155
|
- test/cubicle/cubicle_query_test.rb
|
153
156
|
- test/cubicle/data/data_test.rb
|