dedup_csv 0.1.1-x64-mingw-ucrt → 0.1.3-x64-mingw-ucrt

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: 46fc4a873daaad9dde681799944fbb1fa0b690a93ddb2eb3d20d427f3daeec43
4
- data.tar.gz: 8f9ca5affca5f5d82f4ba6a68644d46a5c95fe9f505efbbc17b7d0fa2c5bf397
3
+ metadata.gz: c4a2b05ffecf1a9adab67698ea4a4bc7a59eb77c45fab9fd4bd5f80a7dbb8478
4
+ data.tar.gz: ce392722d6a1acc6a6535fc480e0d218fcce22b3321d8d8b84c18e1a0b6810f4
5
5
  SHA512:
6
- metadata.gz: ffc92418bb4c8259c90d576d36a55d557b818ce08cb6e886e0b9c2f5d7f7ada15f765535ee30c2420497ef7cc12a6abe02336718ad44f9dce2536bb4a60e323c
7
- data.tar.gz: db4d0953c057bc30efa41268d403e7496dccfd45141aeb3229604da3fddfc71a5730b01b6d6559672088545acd73fee186849f7c217089142a8ba16fc5d051a3
6
+ metadata.gz: b4bd00a516cd8187648c3b096abd6ce0e321f3e22f0883a049fc39a127a9365e4e576f8f397b9bc31c9a906aff5de7c2fd03b058b3bbd8f7df6909b430d024eb
7
+ data.tar.gz: '088f913dd13dca73e25cb7e3d3288a1cf2576cbda1dd8f25e48e6f086d14862ba91ec749d23622949d7c807345ad3d129f424ca1bf707b7150085fbf5c4151a0'
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.3)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
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
 
Binary file
Binary file
@@ -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.3'
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 "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.1
4
+ version: 0.1.3
5
5
  platform: x64-mingw-ucrt
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: []
@@ -33,10 +34,11 @@ files:
33
34
  - lib/dedup_csv/3.2/dedup_csv.so
34
35
  - lib/dedup_csv/version.rb
35
36
  - sig/dedup_csv.rbs
36
- homepage: http://github.com
37
+ homepage: http://github.com/kingsleyh/dedup_csv
37
38
  licenses: []
38
39
  metadata:
39
- homepage_uri: http://github.com
40
+ homepage_uri: http://github.com/kingsleyh/dedup_csv
41
+ source_code_uri: http://github.com/kingsleyh/dedup_csv
40
42
  rubygems_mfa_required: 'true'
41
43
  post_install_message:
42
44
  rdoc_options: []