dedup_csv 0.1.3-x64-mingw-ucrt → 0.1.5-x64-mingw-ucrt

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: c4a2b05ffecf1a9adab67698ea4a4bc7a59eb77c45fab9fd4bd5f80a7dbb8478
4
- data.tar.gz: ce392722d6a1acc6a6535fc480e0d218fcce22b3321d8d8b84c18e1a0b6810f4
3
+ metadata.gz: dfad60d36fc34abe0a470a712e5d8f1fb4800caac7eb1342597d9131346e89a2
4
+ data.tar.gz: 110d873e5a90029ba42d7e142a65e49dcfa246cf4985ef59cb09865204b01767
5
5
  SHA512:
6
- metadata.gz: b4bd00a516cd8187648c3b096abd6ce0e321f3e22f0883a049fc39a127a9365e4e576f8f397b9bc31c9a906aff5de7c2fd03b058b3bbd8f7df6909b430d024eb
7
- data.tar.gz: '088f913dd13dca73e25cb7e3d3288a1cf2576cbda1dd8f25e48e6f086d14862ba91ec749d23622949d7c807345ad3d129f424ca1bf707b7150085fbf5c4151a0'
6
+ metadata.gz: 03fff5c058395af9dff395f0057d477dfe128bf1f183608e2d61332bfa6d9060fb2eaea2ea7091011db5c6b9665b714e8170f38de03e73987f52d4049131bdaa
7
+ data.tar.gz: f46063adfed093b68bc1417c5e90f6b5785f826af9ba8c922ac5f50e7012d9dd871f745dd7d0afb9eadda9a711de10078352e5080fba583ea07a34f28454dbcb
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- dedup_csv (0.1.3)
4
+ dedup_csv (0.1.5)
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
@@ -7,10 +7,10 @@ use magnus::{define_module, function, prelude::*, Ruby};
7
7
 
8
8
  fn dedup(ruby: &Ruby, previous_csv_path: String, new_csv_path: String, target_path: String) -> magnus::error::Result<()> {
9
9
  if !previous_csv_path.has_extension(&["csv"]) {
10
- return Err(magnus::Error::new(ruby.exception_exception(), "previous_csv_path must be a csv file".to_string()));
10
+ return Err(magnus::Error::new(ruby.exception_standard_error(), "previous_csv_path must be a csv file".to_string()));
11
11
  }
12
12
  if !new_csv_path.has_extension(&["csv"]) {
13
- return Err(magnus::Error::new(ruby.exception_exception(), "new_csv_path must be a csv file".to_string()));
13
+ return Err(magnus::Error::new(ruby.exception_standard_error(), "new_csv_path must be a csv file".to_string()));
14
14
  }
15
15
 
16
16
  let csv1 = File::open(previous_csv_path).map_err(|e| magnus_err(ruby, e, "previous_csv_path"))?;
@@ -25,7 +25,7 @@ fn dedup(ruby: &Ruby, previous_csv_path: String, new_csv_path: String, target_pa
25
25
  let new_headers = new_csv.headers().map_err(|e| magnus_err(ruby, e, "new_csv_path headers"))?;
26
26
 
27
27
  if previous_headers != new_headers {
28
- return Err(magnus::Error::new(ruby.exception_exception(), "headers of both csv files must be the same".to_string()));
28
+ return Err(magnus::Error::new(ruby.exception_standard_error(), "headers of both csv files must be the same".to_string()));
29
29
  }
30
30
 
31
31
  wtr.write_byte_record(previous_headers.as_byte_record()).unwrap();
@@ -50,7 +50,7 @@ fn dedup(ruby: &Ruby, previous_csv_path: String, new_csv_path: String, target_pa
50
50
  }
51
51
 
52
52
  fn magnus_err<E: Error>(ruby: &Ruby, e: E, msg: &str) -> magnus::Error {
53
- magnus::Error::new(ruby.exception_exception(), format!("{}: {}", msg, e.to_string()))
53
+ magnus::Error::new(ruby.exception_standard_error(), format!("{}: {}", msg, e.to_string()))
54
54
  }
55
55
 
56
56
  #[magnus::init]
Binary file
Binary file
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module DedupCsv
4
- VERSION = '0.1.3'
4
+ VERSION = '0.1.5'
5
5
  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.3
4
+ version: 0.1.5
5
5
  platform: x64-mingw-ucrt
6
6
  authors:
7
7
  - kingsley.hendrickse
@@ -56,7 +56,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
56
56
  requirements:
57
57
  - - ">="
58
58
  - !ruby/object:Gem::Version
59
- version: 3.0.0
59
+ version: 3.1.6
60
60
  requirements: []
61
61
  rubygems_version: 3.4.4
62
62
  signing_key: