patchwork_csv_utils 0.1.0-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: ba729e9eb822d521122f896b90643ac9da04de055371c5287842326c8ce5ab3e
4
- data.tar.gz: 0f2ef04d36129c12979caa4b46a270e518c5e17d542b6dd00d2c2c5f85192a7a
3
+ metadata.gz: ff133c08ede918bb08484b681b1f9a9e4c72b152832c3412149b7fee5f471a3e
4
+ data.tar.gz: 4c95c88b16c6461126bc8c5ec78927cb5d4c1150904a70dd1be9820f2f57fc43
5
5
  SHA512:
6
- metadata.gz: d1945ee6231d2350eb0ebd1f303d74b85696471fceccde273a09da7ea103f402bfe516125d375b12406a1f667ae9a5bc631fe39f88f4ff591d4b1b7ecbc652a6
7
- data.tar.gz: dff4c46ece08b6a4b0180ccd0e54cf58f6762a8498ffe02f7245a4a725eaa3021603848f3b44ba665789a831da1f6745b2e3cb594dc9ee2c006f2ec040721044
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.0)
4
+ patchwork_csv_utils (0.1.2)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -12,7 +12,7 @@ gem install patchwork_csv_utils
12
12
  ## Usage
13
13
 
14
14
  ```irb
15
- require 'patchwork_csv_utils'
15
+ require 'csv_utils'
16
16
  CsvUtils.dedup('file1.csv', 'file2.csv', 'output.csv')
17
17
  CsvUtils.to_csv('file1.xls', 'output_file1.csv', 'sheet_name')
18
18
  ```
@@ -73,8 +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, "{:?}", s.trim_end())
76
+ write!(dest, "{:?}", clean_strings(s).trim_end())
77
77
  } else {
78
- write!(dest, "{}", s.trim_end())
78
+ write!(dest, "{}", clean_strings(s).trim_end())
79
79
  }
80
+ }
81
+
82
+ fn clean_strings(s: &str) -> String {
83
+ s.replace("\n", " ")
84
+ .replace("\r", " ")
85
+ .replace("\"", "")
80
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.0'
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.0
4
+ version: 0.1.2
5
5
  platform: x86_64-linux
6
6
  authors:
7
7
  - kingsley.hendrickse