dedup_csv 0.1.1-arm64-darwin → 0.1.3-arm64-darwin
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 +4 -4
- data/.rubocop.yml +3 -0
- data/Gemfile.lock +1 -1
- data/README.md +1 -1
- data/lib/dedup_csv/version.rb +1 -1
- data/lib/dedup_csv.rb +8 -3
- metadata +6 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8cccd9b1cfa689270f5346ff1eb92632ac44eb4ab3fd5369853010f958f53fdc
|
4
|
+
data.tar.gz: 56897a70534c66a21957c40aceab1cdc7aa9a4da3c2fe6b9aab73789361818d8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6de92389a279b2469e86065e834326fbf0cf648d321f801f4b65da9bd113d88b87e8c2f65055c4f0e1938ba623186cfea5f4efafccb1723ad9d98ab232197447
|
7
|
+
data.tar.gz: e5efd9bf6e8721d53b63b2ecd33df228135ae88aede52c1936fd0d51fd339e9273d914936db1c65b11a0a22464192f94c35dfc40db187fef318d6ed7069f1456
|
data/.rubocop.yml
CHANGED
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
data/lib/dedup_csv/version.rb
CHANGED
data/lib/dedup_csv.rb
CHANGED
@@ -1,9 +1,14 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
+
# load native extension
|
4
|
+
begin
|
5
|
+
ruby_version = /(\d+\.\d+)/.match(RUBY_VERSION)
|
6
|
+
require_relative "dedup_csv/#{ruby_version}/dedup_csv"
|
7
|
+
rescue LoadError
|
8
|
+
require_relative 'dedup_csv/dedup_csv'
|
9
|
+
end
|
10
|
+
|
3
11
|
require_relative 'dedup_csv/version'
|
4
|
-
require_relative 'dedup_csv/dedup_csv'
|
5
12
|
|
6
13
|
module DedupCsv
|
7
|
-
class Error < StandardError; end
|
8
|
-
# Your code goes here...
|
9
14
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dedup_csv
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: arm64-darwin
|
6
6
|
authors:
|
7
7
|
- kingsley.hendrickse
|
@@ -10,7 +10,8 @@ bindir: exe
|
|
10
10
|
cert_chain: []
|
11
11
|
date: 2024-07-18 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
|
-
description: Given 2
|
13
|
+
description: Given 2 CSV files, remove all rows from the second CSV that are present
|
14
|
+
in the first CSV.
|
14
15
|
email:
|
15
16
|
- kingsley.hendrickse@patchwork.health
|
16
17
|
executables: []
|
@@ -35,10 +36,11 @@ files:
|
|
35
36
|
- lib/dedup_csv/3.2/dedup_csv.bundle
|
36
37
|
- lib/dedup_csv/version.rb
|
37
38
|
- sig/dedup_csv.rbs
|
38
|
-
homepage: http://github.com
|
39
|
+
homepage: http://github.com/kingsleyh/dedup_csv
|
39
40
|
licenses: []
|
40
41
|
metadata:
|
41
|
-
homepage_uri: http://github.com
|
42
|
+
homepage_uri: http://github.com/kingsleyh/dedup_csv
|
43
|
+
source_code_uri: http://github.com/kingsleyh/dedup_csv
|
42
44
|
rubygems_mfa_required: 'true'
|
43
45
|
post_install_message:
|
44
46
|
rdoc_options: []
|