counter_culture 2.6.0 → 2.6.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d29aaa4f5707919469b563c27c2d78b3f188d9aa4b064e1fb6590546095ee951
4
- data.tar.gz: 683692c14e1ac6b37ed31f9d18f911bf517e859630aebdbd352ae69fa552f63a
3
+ metadata.gz: 2d5f74128800b0a21f52ee32279a4ea9eb89cfb707705101958753c065077e30
4
+ data.tar.gz: 89c64173bb719cafe1594918779e3bef02b93b567bf9f098593d1b99f0888c38
5
5
  SHA512:
6
- metadata.gz: b4316fd30adc6c1ea052f9962e1c40baf4806b5cb016fab75e6cd202add290a495dfc8d83573e47d663032fc5d4b1f193d7b6b5cd211c7cce98802c6528fea2d
7
- data.tar.gz: ec4573685944d69be763bbb9237029ff2c18fe657930e9dccd4c26036b1662b938c55bc69fc59bd1adb6b7f1430c8381c94ceaa730fac8c1e7bf3786a252a1c4
6
+ metadata.gz: e2383f82c2c46bab51d9bfe7b4ada1f579768463f38d8ab93d1e0e33c0b878b6c1f38bbd0793c43ee38d3fca6c2a13a27b2453b20daeb69f96c4242a192e56e6
7
+ data.tar.gz: ee3d106b3abb6b4c362d0c6b4861ef2e04ed3cfccd5dd5611b96db50435fc573d3d23a16c3558e0a5d8eafc4c48aa4650fc8edf4f2301d93d9a30fb408de69f9
@@ -1,3 +1,8 @@
1
+ ## 2.6.1 (September 8, 2020)
2
+
3
+ Bugfixes:
4
+ - Address Ruby 2.7.0 deprecation warning (#292)
5
+
1
6
  ## 2.6.0 (July 29, 2020)
2
7
 
3
8
  Improvements:
@@ -109,7 +109,7 @@ module CounterCulture
109
109
  find_in_batches_args[:start] = options[:start] if options[:start].present?
110
110
  find_in_batches_args[:finish] = options[:finish] if options[:finish].present?
111
111
 
112
- counts_query.find_in_batches(find_in_batches_args).with_index(1) do |records, index|
112
+ counts_query.find_in_batches(**find_in_batches_args).with_index(1) do |records, index|
113
113
  log "Processing batch ##{index}."
114
114
  # now iterate over all the models and see whether their counts are right
115
115
  update_count_for_batch(column_name, records)
@@ -1,3 +1,3 @@
1
1
  module CounterCulture
2
- VERSION = '2.6.0'.freeze
2
+ VERSION = '2.6.1'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: counter_culture
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.6.0
4
+ version: 2.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Magnus von Koeller
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-07-30 00:00:00.000000000 Z
11
+ date: 2020-09-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: after_commit_action