dedup_csv 0.1.3-arm64-darwin → 0.1.4-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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8cccd9b1cfa689270f5346ff1eb92632ac44eb4ab3fd5369853010f958f53fdc
4
- data.tar.gz: 56897a70534c66a21957c40aceab1cdc7aa9a4da3c2fe6b9aab73789361818d8
3
+ metadata.gz: 222dc6812e9ab421192b20511e7a6fb08358239949109dbffe148d82d6c75674
4
+ data.tar.gz: 765b7d0d7c35ed0bb808b5fabb4aac2c0331fd65ca9a6e6d9ac29e06ad5d76e3
5
5
  SHA512:
6
- metadata.gz: 6de92389a279b2469e86065e834326fbf0cf648d321f801f4b65da9bd113d88b87e8c2f65055c4f0e1938ba623186cfea5f4efafccb1723ad9d98ab232197447
7
- data.tar.gz: e5efd9bf6e8721d53b63b2ecd33df228135ae88aede52c1936fd0d51fd339e9273d914936db1c65b11a0a22464192f94c35dfc40db187fef318d6ed7069f1456
6
+ metadata.gz: 86221af13eae73100b07055435449b2477cdc36da59a59cd961a549979d32942960ad8fa89d556205e1cd35655d4ad3971ab445104d140820f31e6c6724d2f9f
7
+ data.tar.gz: e0e2bb25beeb2a02f2f40d69d6748d0701ab56ea9bd6cf2c2db32076f3a668ada14ce426f4bb50b854736c10f8c8293c90eb0b70300b30d94243f71de94af8a4
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.4)
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
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.4'
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.4
5
5
  platform: arm64-darwin
6
6
  authors:
7
7
  - kingsley.hendrickse