dedup_csv 0.1.13-x86_64-linux → 0.1.14-x86_64-linux

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8cf43fd43663ae64fe55724da4c9f0c24c08ddf7a42f7ed6b3c72b21fc201ec3
4
- data.tar.gz: 49a41cf51671e9fae3528e7f408e6306c8c111e0e5470fdf6a809465643a0805
3
+ metadata.gz: 7253b1f87b5f010b8c149a8a0e801e6bc89bce1760ecad07c2247883a65e8743
4
+ data.tar.gz: 7f84d147429b115704dd6920aa6627ced5929607a60987bdc21565bf9bd2b7d7
5
5
  SHA512:
6
- metadata.gz: e9b32bfa632e3335d76e1d58e5473ac23112334a71b8a403b16e71199c3b019f29408ecc3252cd24e6ca46f07d1891bead539c0923f7b94083c525d20e76b0b9
7
- data.tar.gz: 1879b602ef8956cedf3cb1424acc1307efcb215ac7fcb05ae4cfb7c9cfceb32905903b3efc73283490e059ba51b803e7d804ebb37d4925e31178999d8f3af5bd
6
+ metadata.gz: 0f57b7f44d4b564e7cd6f9bc117b04638b33342019bcc3f32c733298217f8a71ba044d8c67b5080083b8993cb07d04eaeecbb169e7f2d6f799c4096e843eb54f
7
+ data.tar.gz: 13c6a430fa9a47e17e1d056820f9b46e2851cc044e40ab5dd26739bb2d4941377b25879b6243576b3f29ee5ba5cd021fae483f7753352a5b4b8a684986efcc70
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- dedup_csv (0.1.13)
4
+ dedup_csv (0.1.14)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
Binary file
Binary file
Binary file
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module DedupCsv
4
- VERSION = '0.1.13'
4
+ VERSION = '0.1.14'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dedup_csv
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.13
4
+ version: 0.1.14
5
5
  platform: x86_64-linux
6
6
  authors:
7
7
  - kingsley.hendrickse
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-07-18 00:00:00.000000000 Z
11
+ date: 2024-07-22 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Given 2 CSV files, remove all rows from the second CSV that are present
14
14
  in the first CSV.
@@ -30,7 +30,10 @@ files:
30
30
  - ext/dedup_csv/extconf.rb
31
31
  - ext/dedup_csv/src/lib.rs
32
32
  - lib/dedup_csv.rb
33
- - lib/dedup_csv/dedup_csv.so
33
+ - lib/dedup_csv/2.7/dedup_csv.so
34
+ - lib/dedup_csv/3.0/dedup_csv.so
35
+ - lib/dedup_csv/3.1/dedup_csv.so
36
+ - lib/dedup_csv/3.2/dedup_csv.so
34
37
  - lib/dedup_csv/version.rb
35
38
  - sig/dedup_csv.rbs
36
39
  homepage: http://github.com/kingsleyh/dedup_csv
@@ -50,7 +53,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
50
53
  version: '2.7'
51
54
  - - "<"
52
55
  - !ruby/object:Gem::Version
53
- version: 2.8.dev
56
+ version: 3.3.dev
54
57
  required_rubygems_version: !ruby/object:Gem::Requirement
55
58
  requirements:
56
59
  - - ">="
File without changes