csvjoin 0.6.1 → 2.0.1
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 +4 -4
- data/bin/{csvjoin → csvjoin2} +1 -1
- data/lib/callbacks.rb +1 -0
- data/lib/csvjoin/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fd76aa5962d80a5505a4f2d800f335eb91065ed4e3b2026d6329d6b3ae3e90a2
|
4
|
+
data.tar.gz: c0dcd64a54f4b0c39b32b5e8afeaabcd76d1fddad1fd7c0da61f6434b88c62f4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 662103c8bf59bada88115057a2a19180feee8fd2c4d61ba41592a1caacaca5940d5d47edf2199dcf92ce6e58165a40fefbef5a7c1d0b8626643c3de79cbabeaa
|
7
|
+
data.tar.gz: c367df5cfeb8732c7a63823539342ca5c5961d0ca258bcac59cbf7a9aab92c806bfc23302eb62eeb880b633632be49141336057ad8f5412cde058afb4a432118
|
data/bin/{csvjoin → csvjoin2}
RENAMED
@@ -4,7 +4,7 @@
|
|
4
4
|
require_relative '../lib/comparator.rb'
|
5
5
|
|
6
6
|
if (ARGV.length < 2 || (ARGV.include?"-h") || (ARGV.include?"--help"))
|
7
|
-
puts "Usage:
|
7
|
+
puts "Usage: csvjoin2 FILE1 FILE2 [ColumnA1=ColumnA2,ColumnB1=ColumnB2]"
|
8
8
|
puts "Joins two CSV files looking for same values in specified columns. "
|
9
9
|
puts "If no columns specified by default it will use columns with the same name in both files"
|
10
10
|
else
|
data/lib/callbacks.rb
CHANGED
data/lib/csvjoin/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: csvjoin
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 2.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sergey Evstegneiev
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-06-
|
11
|
+
date: 2020-06-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: diff-lcs
|
@@ -113,11 +113,11 @@ description: tool to align and merge two tables containing different parts of th
|
|
113
113
|
email:
|
114
114
|
- serg123e+github@gmail.com
|
115
115
|
executables:
|
116
|
-
-
|
116
|
+
- csvjoin2
|
117
117
|
extensions: []
|
118
118
|
extra_rdoc_files: []
|
119
119
|
files:
|
120
|
-
- bin/
|
120
|
+
- bin/csvjoin2
|
121
121
|
- lib/callbacks.rb
|
122
122
|
- lib/comparator.rb
|
123
123
|
- lib/csvjoin/version.rb
|