dedup_csv 0.1.2-x86_64-linux → 0.1.4-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: 399d31ac2650c0c79b87f474840f82e0eb85dab268b574a4edd7f5a4a451c30c
4
- data.tar.gz: 6198e1a1cae8565395432d95222d89177c62f09e8edec07f0ea45c982d49fee9
3
+ metadata.gz: 338f67436809e89517395c1b4bc074d34e1faad7c2d44d30a39449562891ca1c
4
+ data.tar.gz: f1646b2510e31814de63f077c177a61fc32b7cd0360a28d4fbf11c935cd3361f
5
5
  SHA512:
6
- metadata.gz: 64b7a354fb1a33c78040271c253559cb4a53a60d0854d24e1f73e97215abc9b7b3041e5a6f6cf23f4f5e57248154b3fb28ddc012d2dd3606e78921b9fd852fcb
7
- data.tar.gz: '0579cd7b80eced5d733264c779f51f4563f71eabf17aea280dd7aa18d2331db9682cf0bfda38e5195cb3ba6147b89b0fccf1a2f464ca5a032a3fbb0c00981acd'
6
+ metadata.gz: dd70567f9c186cdcf3c3f2011d77698e1700f89a08ea6e52e286ab8ea76aacb99c73e895a11935e28cfdafa24efb050a8d31a0f5cb5b376dcf553c485d4e17c3
7
+ data.tar.gz: 8bb301fb0cbe2b65c1fb049a9da53b2c33d9afbdb0a993be793efec83c87617cff86c0ff5ff9de81f87ec2cc1a8064c42c7c0e4c82179471debeaa39268e1297
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- dedup_csv (0.1.2)
4
+ dedup_csv (0.1.4)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -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.2'
4
+ VERSION = '0.1.4'
5
5
  end
data/lib/dedup_csv.rb CHANGED
@@ -3,7 +3,7 @@
3
3
  # load native extension
4
4
  begin
5
5
  ruby_version = /(\d+\.\d+)/.match(RUBY_VERSION)
6
- require_relative "#{ruby_version}/dedup_csv"
6
+ require_relative "dedup_csv/#{ruby_version}/dedup_csv"
7
7
  rescue LoadError
8
8
  require_relative 'dedup_csv/dedup_csv'
9
9
  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.2
4
+ version: 0.1.4
5
5
  platform: x86_64-linux
6
6
  authors:
7
7
  - kingsley.hendrickse