lx_data_validation 0.0.5 → 0.0.6

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
  SHA1:
3
- metadata.gz: d375db47b73f839c7657154f711f7b91f008af0f
4
- data.tar.gz: 2bc442e90cc560b35a4e8b6489da9c0fa035443a
3
+ metadata.gz: 1b8f0c3775062f5b47c7b04662dcd3a9841e96b9
4
+ data.tar.gz: fcbe2e175c963495e725a7f9204cf5fa2509ef37
5
5
  SHA512:
6
- metadata.gz: d5114d8ee2f53f3c4f6a8b986703326b704fb72c89d972f59006d9464242479c2141558e5a935039dfda67bc77f13202d7739e5ed2605f6a6727fd11b9eb2905
7
- data.tar.gz: 57de47bcd55eff91184b7d00e6c5a9ae13ba3d9dd8a21cb880308af353a160d7cfba0e723f0059f9ddbf0292c076fddc489630470127934bbb7fd872eb32a155
6
+ metadata.gz: 0f6799754bb9077081ad1d35f24193f7d81ec3a35340e48b37640bcadc6f6a16cff47896d37fc95f0682b6ff466fbfff32488e164b1ff121ba407da93efb206d
7
+ data.tar.gz: 33779c94c8db7d0aaeabcfc0b2041f2e08fa0b3bab8799291c2f52a2d3510c7e39b2b4ef959e3417b7f6c39f57e7c27b9aa2ae6a3ccdfd45f4c338cb3978cef9
data/bin/compare_url ADDED
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'data_validation'
4
+
5
+ DataValidation.compare_with_url ARGV[0]
@@ -24,7 +24,7 @@ Gem::Specification.new do |spec|
24
24
 
25
25
  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
26
26
  spec.bindir = "bin"
27
- spec.executables = ["compare"]
27
+ spec.executables = ["compare", "compare_url"]
28
28
  spec.require_paths = ["lib"]
29
29
 
30
30
  spec.add_runtime_dependency 'nokogiri', '1.6.6.2'
@@ -1,3 +1,3 @@
1
1
  module DataValidation
2
- VERSION = "0.0.5"
2
+ VERSION = "0.0.6"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lx_data_validation
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Roger Tong
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-02-23 00:00:00.000000000 Z
11
+ date: 2017-03-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: nokogiri
@@ -45,6 +45,7 @@ email:
45
45
  - tomtongt@live.com
46
46
  executables:
47
47
  - compare
48
+ - compare_url
48
49
  extensions: []
49
50
  extra_rdoc_files: []
50
51
  files:
@@ -56,6 +57,7 @@ files:
56
57
  - README.md
57
58
  - Rakefile
58
59
  - bin/compare
60
+ - bin/compare_url
59
61
  - data_validation.gemspec
60
62
  - lib/data_validation.rb
61
63
  - lib/data_validation/comparison/comparison_base.rb