patchwork_csv_utils 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: c22d6595d63535622b2f7d168f9b946a98ca2ff4cbbc7a697e7868a05eca970b
4
- data.tar.gz: 806261df7e55b9fa404d0b1839c7913f23f98c4c0797f1251b376a88f23dcc70
3
+ metadata.gz: ff133c08ede918bb08484b681b1f9a9e4c72b152832c3412149b7fee5f471a3e
4
+ data.tar.gz: 4c95c88b16c6461126bc8c5ec78927cb5d4c1150904a70dd1be9820f2f57fc43
5
5
  SHA512:
6
- metadata.gz: 7fb07049e7358fe078b6aaa19f864997d82298087575779cac955f1dae3d6fc873fe1bbc80020bae04799c15afbe5dc3c73d2909367299681d41466db97d879b
7
- data.tar.gz: 3cd8028e84e0b58e3ad8b40f09fa58e08238c9b064d42abfc673f2a881f798362d6d5172442db79af761707c343e26f2c7b1db289fcf22511a2a802d26605c6e
6
+ metadata.gz: af89a3f2e701e6f77a5cb54d51f2284da6df01daa4386d637a4b913c486519d6789fe6c864063406cfdc406df5363fb0a2a8e242b0a884a081b7a14f0757477c
7
+ data.tar.gz: 59ce53357adf23fc29172f8e7b6e07fe9df121c9ad86133ff0abac4227264c2f971a736bb5ef308ad0450a764f22de2881125cbc8a45acfd54159f6fe38a7b45
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- patchwork_csv_utils (0.1.1)
4
+ patchwork_csv_utils (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
@@ -73,12 +73,14 @@ fn transform_time_to_datetime(t1: NaiveDateTime, t2: NaiveDateTime) -> NaiveDate
73
73
 
74
74
  fn handle_commas<W: Write>(dest: &mut W, s: &str) -> std::io::Result<()> {
75
75
  if s.contains(",") {
76
- write!(dest, "{:?}", remove_new_lines(s.trim_end()))
76
+ write!(dest, "{:?}", clean_strings(s).trim_end())
77
77
  } else {
78
- write!(dest, "{}", remove_new_lines(s.trim_end()))
78
+ write!(dest, "{}", clean_strings(s).trim_end())
79
79
  }
80
80
  }
81
81
 
82
- fn remove_new_lines(s: &str) -> String {
83
- s.replace("\n", " ").replace("\r", " ")
82
+ fn clean_strings(s: &str) -> String {
83
+ s.replace("\n", " ")
84
+ .replace("\r", " ")
85
+ .replace("\"", "")
84
86
  }
Binary file
Binary file
Binary file
Binary file
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module CsvUtils
4
- VERSION = '0.1.1'
4
+ VERSION = '0.1.2'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: patchwork_csv_utils
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