acts_as_scrubbable 1.1.0 → 1.1.1
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.
- checksums.yaml +5 -5
- data/Gemfile +0 -2
- data/lib/acts_as_scrubbable/parallel_table_scrubber.rb +1 -1
- data/lib/acts_as_scrubbable/version.rb +1 -1
- metadata +6 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: bb73960ded68e0d1a181ea4bf86300ae30dccb3e29330e63ddc8cae835662750
|
|
4
|
+
data.tar.gz: 534cdd721d48284f9d714093f307108f0c12ac13ef9636bd28b08745f984fcc9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8685741230ee6f515b9b5738dd5b32772b66f513f991f19fe95d0db2dfcb6414f3424d1a28218e4f2b5a285bb6a0b739ce6446e2bfd569023caf1dc432ec9924
|
|
7
|
+
data.tar.gz: 4883b89adccb21c37572a3e4aa98fba58b19765d356748875921ab877c6bcc4a201b9c798f38777d8ac99cd46c0b6c4d27aac2595657d03c6199fdcc012fe69b
|
data/Gemfile
CHANGED
|
@@ -76,7 +76,7 @@ module ActsAsScrubbable
|
|
|
76
76
|
else
|
|
77
77
|
collection = ar_class.all
|
|
78
78
|
end
|
|
79
|
-
collection.reorder(:id)
|
|
79
|
+
collection = collection.reorder(:id)
|
|
80
80
|
collection = collection.where("#{ar_class.quoted_table_name}.id >= :id", id: id) if id
|
|
81
81
|
collection.offset(offset).limit(1).pluck(:id).first
|
|
82
82
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: acts_as_scrubbable
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Samer Masry
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2021-07-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
@@ -241,7 +241,7 @@ homepage: https://github.com/smasry/acts_as_scrubbable
|
|
|
241
241
|
licenses:
|
|
242
242
|
- MIT
|
|
243
243
|
metadata: {}
|
|
244
|
-
post_install_message:
|
|
244
|
+
post_install_message:
|
|
245
245
|
rdoc_options: []
|
|
246
246
|
require_paths:
|
|
247
247
|
- lib
|
|
@@ -256,9 +256,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
256
256
|
- !ruby/object:Gem::Version
|
|
257
257
|
version: '0'
|
|
258
258
|
requirements: []
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
signing_key:
|
|
259
|
+
rubygems_version: 3.1.4
|
|
260
|
+
signing_key:
|
|
262
261
|
specification_version: 4
|
|
263
262
|
summary: Scrubbing data made easy
|
|
264
263
|
test_files:
|