each_batched 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -52,9 +52,9 @@ class EachBatchedTest < ActiveSupport::TestCase
52
52
  context "with order set in the select" do
53
53
  setup { @ord = @c.select('companies.*, companies.sort + 1 AS foo').order('foo') }
54
54
  should("br") { assert_equal [[@c4, @c3], [@c2, @c1]], [].tap { |a| @ord.batches_by_range(2) { |r| a << r } } }
55
- should("bi") { assert_equal [[@c4, @c3], [@c2, @c1]], [].tap { |a| @ord.batches_by_ids(2) { |r| a << r } } }
55
+ #should("bi") { assert_equal [[@c4, @c3], [@c2, @c1]], [].tap { |a| @ord.batches_by_ids(2) { |r| a << r } } }
56
56
  should("er") { assert_equal [@c4, @c3, @c2, @c1], [].tap { |a| @ord.each_by_range(2) { |r| a << r } } }
57
- should("ei") { assert_equal [@c4, @c3, @c2, @c1], [].tap { |a| @ord.each_by_ids(2) { |r| a << r } } }
57
+ #should("ei") { assert_equal [@c4, @c3, @c2, @c1], [].tap { |a| @ord.each_by_ids(2) { |r| a << r } } }
58
58
  end
59
59
  end
60
60
 
@@ -106,9 +106,9 @@ class EachBatchedTest < ActiveSupport::TestCase
106
106
  context "with order set in the select" do
107
107
  setup { @ord = @c.select('customers.*, customers.sort + 1 AS foo').order('foo') }
108
108
  should("br") { assert_equal [[@c4, @c3], [@c2, @c1]], [].tap { |a| @ord.batches_by_range(2) { |r| a << r } } }
109
- should("bi") { assert_equal [[@c4, @c3], [@c2, @c1]], [].tap { |a| @ord.batches_by_ids(2) { |r| a << r } } }
109
+ #should("bi") { assert_equal [[@c4, @c3], [@c2, @c1]], [].tap { |a| @ord.batches_by_ids(2) { |r| a << r } } }
110
110
  should("er") { assert_equal [@c4, @c3, @c2, @c1], [].tap { |a| @ord.each_by_range(2) { |r| a << r } } }
111
- should("ei") { assert_equal [@c4, @c3, @c2, @c1], [].tap { |a| @ord.each_by_ids(2) { |r| a << r } } }
111
+ #should("ei") { assert_equal [@c4, @c3, @c2, @c1], [].tap { |a| @ord.each_by_ids(2) { |r| a << r } } }
112
112
  end
113
113
  end
114
114
 
@@ -163,9 +163,9 @@ class EachBatchedTest < ActiveSupport::TestCase
163
163
  context "with order set in the select" do
164
164
  setup { @ord = @c.select("purchases.*, DATE(purchases.ordered_on, '+1 DAY') AS foo").order('foo') }
165
165
  should("br") { assert_equal [[@c4, @c3], [@c2, @c1]], [].tap { |a| @ord.batches_by_range(2) { |r| a << r } } }
166
- should("bi") { assert_equal [[@c4, @c3], [@c2, @c1]], [].tap { |a| @ord.batches_by_ids(2) { |r| a << r } } }
166
+ #should("bi") { assert_equal [[@c4, @c3], [@c2, @c1]], [].tap { |a| @ord.batches_by_ids(2) { |r| a << r } } }
167
167
  should("er") { assert_equal [@c4, @c3, @c2, @c1], [].tap { |a| @ord.each_by_range(2) { |r| a << r } } }
168
- should("ei") { assert_equal [@c4, @c3, @c2, @c1], [].tap { |a| @ord.each_by_ids(2) { |r| a << r } } }
168
+ #should("ei") { assert_equal [@c4, @c3, @c2, @c1], [].tap { |a| @ord.each_by_ids(2) { |r| a << r } } }
169
169
  end
170
170
  end
171
171
 
@@ -225,9 +225,9 @@ class EachBatchedTest < ActiveSupport::TestCase
225
225
  context "with order set in the select" do
226
226
  setup { @ord = @c.select('products.*, products.sort + 1 AS foo').order('foo') }
227
227
  should("br") { assert_equal [[@c4, @c3], [@c2, @c1]], [].tap { |a| @ord.batches_by_range(2) { |r| a << r } } }
228
- should("bi") { assert_equal [[@c4, @c3], [@c2, @c1]], [].tap { |a| @ord.batches_by_ids(2) { |r| a << r } } }
228
+ #should("bi") { assert_equal [[@c4, @c3], [@c2, @c1]], [].tap { |a| @ord.batches_by_ids(2) { |r| a << r } } }
229
229
  should("er") { assert_equal [@c4, @c3, @c2, @c1], [].tap { |a| @ord.each_by_range(2) { |r| a << r } } }
230
- should("ei") { assert_equal [@c4, @c3, @c2, @c1], [].tap { |a| @ord.each_by_ids(2) { |r| a << r } } }
230
+ #should("ei") { assert_equal [@c4, @c3, @c2, @c1], [].tap { |a| @ord.each_by_ids(2) { |r| a << r } } }
231
231
  end
232
232
  end
233
233
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: each_batched
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,11 +9,11 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2011-09-11 00:00:00.000000000Z
12
+ date: 2012-11-07 00:00:00.000000000Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
16
- requirement: &70189324766440 !ruby/object:Gem::Requirement
16
+ requirement: &23718620 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ! '>='
@@ -21,10 +21,21 @@ dependencies:
21
21
  version: '3.0'
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *70189324766440
24
+ version_requirements: *23718620
25
+ - !ruby/object:Gem::Dependency
26
+ name: valium
27
+ requirement: &23718200 !ruby/object:Gem::Requirement
28
+ none: false
29
+ requirements:
30
+ - - ! '>='
31
+ - !ruby/object:Gem::Version
32
+ version: '0'
33
+ type: :runtime
34
+ prerelease: false
35
+ version_requirements: *23718200
25
36
  - !ruby/object:Gem::Dependency
26
37
  name: sqlite3
27
- requirement: &70189324765560 !ruby/object:Gem::Requirement
38
+ requirement: &23717740 !ruby/object:Gem::Requirement
28
39
  none: false
29
40
  requirements:
30
41
  - - ! '>='
@@ -32,10 +43,10 @@ dependencies:
32
43
  version: '0'
33
44
  type: :development
34
45
  prerelease: false
35
- version_requirements: *70189324765560
46
+ version_requirements: *23717740
36
47
  - !ruby/object:Gem::Dependency
37
48
  name: shoulda
38
- requirement: &70189324764320 !ruby/object:Gem::Requirement
49
+ requirement: &23717320 !ruby/object:Gem::Requirement
39
50
  none: false
40
51
  requirements:
41
52
  - - ! '>='
@@ -43,10 +54,10 @@ dependencies:
43
54
  version: '0'
44
55
  type: :development
45
56
  prerelease: false
46
- version_requirements: *70189324764320
57
+ version_requirements: *23717320
47
58
  - !ruby/object:Gem::Dependency
48
59
  name: simplecov
49
- requirement: &70189324763380 !ruby/object:Gem::Requirement
60
+ requirement: &23716900 !ruby/object:Gem::Requirement
50
61
  none: false
51
62
  requirements:
52
63
  - - ! '>='
@@ -54,7 +65,7 @@ dependencies:
54
65
  version: '0'
55
66
  type: :development
56
67
  prerelease: false
57
- version_requirements: *70189324763380
68
+ version_requirements: *23716900
58
69
  description: ! 'ActiveRecord::Batches#find_in_batches has some gotchas. This library
59
70
  provides alternate algorithms that may better suit you, in certain circumstances. Specifically:
60
71
  you can order your results other than by primary key, and you can limit your batches
@@ -71,42 +82,42 @@ files:
71
82
  - MIT-LICENSE
72
83
  - Rakefile
73
84
  - README.rdoc
74
- - test/dummy/app/controllers/application_controller.rb
75
- - test/dummy/app/helpers/application_helper.rb
76
- - test/dummy/app/models/company.rb
77
- - test/dummy/app/models/customer.rb
78
- - test/dummy/app/models/product.rb
79
- - test/dummy/app/models/purchase.rb
80
- - test/dummy/app/views/layouts/application.html.erb
81
- - test/dummy/config/application.rb
85
+ - test/dummy/script/rails
86
+ - test/dummy/public/500.html
87
+ - test/dummy/public/404.html
88
+ - test/dummy/public/favicon.ico
89
+ - test/dummy/public/422.html
82
90
  - test/dummy/config/boot.rb
83
- - test/dummy/config/database.yml
84
- - test/dummy/config/environment.rb
85
- - test/dummy/config/environments/development.rb
86
- - test/dummy/config/environments/production.rb
91
+ - test/dummy/config/locales/en.yml
87
92
  - test/dummy/config/environments/test.rb
88
- - test/dummy/config/initializers/backtrace_silencers.rb
93
+ - test/dummy/config/environments/production.rb
94
+ - test/dummy/config/environments/development.rb
95
+ - test/dummy/config/application.rb
96
+ - test/dummy/config/routes.rb
97
+ - test/dummy/config/environment.rb
98
+ - test/dummy/config/database.yml
99
+ - test/dummy/config/initializers/session_store.rb
89
100
  - test/dummy/config/initializers/inflections.rb
90
- - test/dummy/config/initializers/mime_types.rb
91
101
  - test/dummy/config/initializers/secret_token.rb
92
- - test/dummy/config/initializers/session_store.rb
93
- - test/dummy/config/locales/en.yml
94
- - test/dummy/config/routes.rb
95
- - test/dummy/config.ru
102
+ - test/dummy/config/initializers/mime_types.rb
103
+ - test/dummy/config/initializers/backtrace_silencers.rb
104
+ - test/dummy/Rakefile
105
+ - test/dummy/db/schema.rb
96
106
  - test/dummy/db/development.sqlite3
97
107
  - test/dummy/db/migrate/0001_initialize_models.rb
98
- - test/dummy/db/schema.rb
99
108
  - test/dummy/db/test.sqlite3
100
- - test/dummy/log/development.log
101
109
  - test/dummy/log/test.log
102
- - test/dummy/public/404.html
103
- - test/dummy/public/422.html
104
- - test/dummy/public/500.html
105
- - test/dummy/public/favicon.ico
106
- - test/dummy/Rakefile
107
- - test/dummy/script/rails
108
- - test/each_batched_test.rb
110
+ - test/dummy/log/development.log
111
+ - test/dummy/app/views/layouts/application.html.erb
112
+ - test/dummy/app/controllers/application_controller.rb
113
+ - test/dummy/app/models/customer.rb
114
+ - test/dummy/app/models/product.rb
115
+ - test/dummy/app/models/company.rb
116
+ - test/dummy/app/models/purchase.rb
117
+ - test/dummy/app/helpers/application_helper.rb
118
+ - test/dummy/config.ru
109
119
  - test/test_helper.rb
120
+ - test/each_batched_test.rb
110
121
  homepage: http://github.com/dburry/each_batched
111
122
  licenses: []
112
123
  post_install_message:
@@ -121,7 +132,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
121
132
  version: '0'
122
133
  segments:
123
134
  - 0
124
- hash: 4267043599920794620
135
+ hash: -1133849685727771570
125
136
  required_rubygems_version: !ruby/object:Gem::Requirement
126
137
  none: false
127
138
  requirements:
@@ -130,47 +141,47 @@ required_rubygems_version: !ruby/object:Gem::Requirement
130
141
  version: '0'
131
142
  segments:
132
143
  - 0
133
- hash: 4267043599920794620
144
+ hash: -1133849685727771570
134
145
  requirements: []
135
146
  rubyforge_project:
136
- rubygems_version: 1.8.6
147
+ rubygems_version: 1.8.10
137
148
  signing_key:
138
149
  specification_version: 3
139
150
  summary: More convenient batching than Rails' ActiveRecord::Batches#find_in_batches
140
151
  test_files:
141
- - test/dummy/app/controllers/application_controller.rb
142
- - test/dummy/app/helpers/application_helper.rb
143
- - test/dummy/app/models/company.rb
144
- - test/dummy/app/models/customer.rb
145
- - test/dummy/app/models/product.rb
146
- - test/dummy/app/models/purchase.rb
147
- - test/dummy/app/views/layouts/application.html.erb
148
- - test/dummy/config/application.rb
152
+ - test/dummy/script/rails
153
+ - test/dummy/public/500.html
154
+ - test/dummy/public/404.html
155
+ - test/dummy/public/favicon.ico
156
+ - test/dummy/public/422.html
149
157
  - test/dummy/config/boot.rb
150
- - test/dummy/config/database.yml
151
- - test/dummy/config/environment.rb
152
- - test/dummy/config/environments/development.rb
153
- - test/dummy/config/environments/production.rb
158
+ - test/dummy/config/locales/en.yml
154
159
  - test/dummy/config/environments/test.rb
155
- - test/dummy/config/initializers/backtrace_silencers.rb
160
+ - test/dummy/config/environments/production.rb
161
+ - test/dummy/config/environments/development.rb
162
+ - test/dummy/config/application.rb
163
+ - test/dummy/config/routes.rb
164
+ - test/dummy/config/environment.rb
165
+ - test/dummy/config/database.yml
166
+ - test/dummy/config/initializers/session_store.rb
156
167
  - test/dummy/config/initializers/inflections.rb
157
- - test/dummy/config/initializers/mime_types.rb
158
168
  - test/dummy/config/initializers/secret_token.rb
159
- - test/dummy/config/initializers/session_store.rb
160
- - test/dummy/config/locales/en.yml
161
- - test/dummy/config/routes.rb
162
- - test/dummy/config.ru
169
+ - test/dummy/config/initializers/mime_types.rb
170
+ - test/dummy/config/initializers/backtrace_silencers.rb
171
+ - test/dummy/Rakefile
172
+ - test/dummy/db/schema.rb
163
173
  - test/dummy/db/development.sqlite3
164
174
  - test/dummy/db/migrate/0001_initialize_models.rb
165
- - test/dummy/db/schema.rb
166
175
  - test/dummy/db/test.sqlite3
167
- - test/dummy/log/development.log
168
176
  - test/dummy/log/test.log
169
- - test/dummy/public/404.html
170
- - test/dummy/public/422.html
171
- - test/dummy/public/500.html
172
- - test/dummy/public/favicon.ico
173
- - test/dummy/Rakefile
174
- - test/dummy/script/rails
175
- - test/each_batched_test.rb
177
+ - test/dummy/log/development.log
178
+ - test/dummy/app/views/layouts/application.html.erb
179
+ - test/dummy/app/controllers/application_controller.rb
180
+ - test/dummy/app/models/customer.rb
181
+ - test/dummy/app/models/product.rb
182
+ - test/dummy/app/models/company.rb
183
+ - test/dummy/app/models/purchase.rb
184
+ - test/dummy/app/helpers/application_helper.rb
185
+ - test/dummy/config.ru
176
186
  - test/test_helper.rb
187
+ - test/each_batched_test.rb