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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 556d47fbf1bc4d3cb0821ec85ea557bddda5b2087e12d96657ca422b4d05e200
4
- data.tar.gz: b5a0aeccd15f5f100917f1506460540b37f7c5e3bad513d3323cab249353bb21
3
+ metadata.gz: fd76aa5962d80a5505a4f2d800f335eb91065ed4e3b2026d6329d6b3ae3e90a2
4
+ data.tar.gz: c0dcd64a54f4b0c39b32b5e8afeaabcd76d1fddad1fd7c0da61f6434b88c62f4
5
5
  SHA512:
6
- metadata.gz: cf7cd627f6ec3f8def14ed499d947bdace1115b275d77fc966259e812ac679108675a8a0b6f4cb3be02469d339d15f4ae072f9171635f3aa14aedb7f014e6f95
7
- data.tar.gz: 548d2195ae23b5aac1bf4b6eeefec69c36ae33aa7fb1517d0c8c4628f2ec4828f30a3f5493857ed172c7aed7160da355495dad46f4b2ec22d6df2bc9f65d999d
6
+ metadata.gz: 662103c8bf59bada88115057a2a19180feee8fd2c4d61ba41592a1caacaca5940d5d47edf2199dcf92ce6e58165a40fefbef5a7c1d0b8626643c3de79cbabeaa
7
+ data.tar.gz: c367df5cfeb8732c7a63823539342ca5c5961d0ca258bcac59cbf7a9aab92c806bfc23302eb62eeb880b633632be49141336057ad8f5412cde058afb4a432118
@@ -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: csvjoin FILE1 FILE2 [ColumnA1=ColumnA2,ColumnB1=ColumnB2]"
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
@@ -2,6 +2,7 @@
2
2
  module Diff
3
3
  module LCS
4
4
  class NoReplaceDiffCallbacks
5
+
5
6
  # Returns the difference set collected during the diff process.
6
7
  attr_reader :diffs
7
8
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module CSVJoin
4
- VERSION = '0.6.1'
4
+ VERSION = '2.0.1'
5
5
  end
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.6.1
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-13 00:00:00.000000000 Z
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
- - csvjoin
116
+ - csvjoin2
117
117
  extensions: []
118
118
  extra_rdoc_files: []
119
119
  files:
120
- - bin/csvjoin
120
+ - bin/csvjoin2
121
121
  - lib/callbacks.rb
122
122
  - lib/comparator.rb
123
123
  - lib/csvjoin/version.rb