dedup_csv 0.1.1-x86_64-linux → 0.1.2-x86_64-linux

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: 45c03b08fa55283d608e1de618ba4b2e2ab57cfa8ea2d5b66f3ad3c423aef642
4
- data.tar.gz: f88169135fbe5ab18388300b7ca28e0492cde3e9a0e0da262c916b7b999f837b
3
+ metadata.gz: 399d31ac2650c0c79b87f474840f82e0eb85dab268b574a4edd7f5a4a451c30c
4
+ data.tar.gz: 6198e1a1cae8565395432d95222d89177c62f09e8edec07f0ea45c982d49fee9
5
5
  SHA512:
6
- metadata.gz: 16bddd21882ea9cc516ac45f479cbcdecd33641b441fa2c2b81999a11ba2723faa63c2f4858c5af5111f5695ba1cf134b238a3a88ed3f843d4b4997ca1e5b96e
7
- data.tar.gz: b5418d9534185df0182a9d5a841efe2c46da0858a272724e1c1ad923295eb69a9a8f386825ee1449d0f21dd10527fd00f9508846a8891bca79dd8fb4575fc9b3
6
+ metadata.gz: 64b7a354fb1a33c78040271c253559cb4a53a60d0854d24e1f73e97215abc9b7b3041e5a6f6cf23f4f5e57248154b3fb28ddc012d2dd3606e78921b9fd852fcb
7
+ data.tar.gz: '0579cd7b80eced5d733264c779f51f4563f71eabf17aea280dd7aa18d2331db9682cf0bfda38e5195cb3ba6147b89b0fccf1a2f464ca5a032a3fbb0c00981acd'
data/.rubocop.yml CHANGED
@@ -7,6 +7,9 @@ Style/StringLiterals:
7
7
  Enabled: true
8
8
  EnforcedStyle: single_quotes
9
9
 
10
+ Style/Documentation:
11
+ Enabled: false
12
+
10
13
  Style/StringLiteralsInInterpolation:
11
14
  Enabled: true
12
15
  EnforcedStyle: double_quotes
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- dedup_csv (0.1.1)
4
+ dedup_csv (0.1.2)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -67,4 +67,4 @@ DEPENDENCIES
67
67
  rubocop (~> 1.21)
68
68
 
69
69
  BUNDLED WITH
70
- 2.4.4
70
+ 2.4.10
data/README.md CHANGED
@@ -11,7 +11,7 @@ gem install dedup_csv
11
11
  ## Usage
12
12
 
13
13
  ```irb
14
- require 'dedup_csv/3.2/dedup_csv'
14
+ require 'dedup_csv'
15
15
  DedupCsv.dedup('file1.csv', 'file2.csv', 'output.csv')
16
16
  ```
17
17
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module DedupCsv
4
- VERSION = '0.1.1'
4
+ VERSION = '0.1.2'
5
5
  end
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 "#{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.1
4
+ version: 0.1.2
5
5
  platform: x86_64-linux
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 csv files of the same shape will find a delta
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.so
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: []