patchwork_csv_utils 0.1.1-arm64-darwin → 0.1.2-arm64-darwin

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: a10957832caa75c9a8b0b488c9e01b2e5b72fa6fce02e0d72b38ccb983aa9184
4
- data.tar.gz: 38a2cabac24cf9ca6b9e047fdb52d252b67630bbee0404a50e7533bb70603017
3
+ metadata.gz: 5d48484a389b0f61fa40b9ff495a9529d5b6672531ec8a46058fcb031ff58e1f
4
+ data.tar.gz: c817216b32c72b30887582774d31057547beec706679080905ad8c8b0a724e24
5
5
  SHA512:
6
- metadata.gz: '096e50a3c0d257027e355a251dac70eebe57551455db80e523c3c32e37e38ab0cdc7cabaf11222ac391f1e5be390f3a58cac040f02b14aa3368e5b92dac8eee8'
7
- data.tar.gz: 7c3f5cb798ab111b046bbad486defd62ae1eff4c51d677ed2726da3d6e8ebe089ee74a3a4c07c496f9d372acd5f06cbafc2bd35be952c29571ba63af7556309f
6
+ metadata.gz: 95eca6a03e0ff76c85764e18b8e59c48e2c4e3dc30ce7921fbfa264f7aab9b5c9cbf431c9c912232bb84d2a3343bd7e91ddc97124a80b525095b2e7b74b8945b
7
+ data.tar.gz: 3d9c7bedc83f9f6d8e4cf79b40f1dd647e75a1ad78b8a4f006d252f7e2c76344304e9502bc32867a66309233118332e774d6001dac1221e865ca15aa59c83402
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: arm64-darwin
6
6
  authors:
7
7
  - kingsley.hendrickse