textfile 1.0.3 → 1.0.4
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/.travis.yml +1 -0
- data/Gemfile.lock +6 -6
- data/VERSION +1 -1
- data/textfile.gemspec +4 -4
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d66e38e4f30eaf3cf41d06409e6663c98f86428a
|
|
4
|
+
data.tar.gz: eb29f5ea3ae18b4fb3ffd664b942f0a2340ad26f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c69136ada72a8abb82042a0a364a76ef52e1a9d92620b2f0662eb115dd3b732f60da4182e7884792813a83bcccfeb5afd8c472beb933361dc6dc2990c539a2e8
|
|
7
|
+
data.tar.gz: 229902be4c2622a82e58e54b6b11d450a81ff0b058f4402e7bf7e58e57b54063a1aeb6b9e4098a95831fa753af627591184708b7d11bfbe3acf13f9d53a7383b
|
data/Gemfile.lock
CHANGED
|
@@ -9,10 +9,10 @@ GEM
|
|
|
9
9
|
tzinfo (~> 1.1)
|
|
10
10
|
addressable (2.3.8)
|
|
11
11
|
builder (3.2.2)
|
|
12
|
-
coveralls (0.8.
|
|
12
|
+
coveralls (0.8.10)
|
|
13
13
|
json (~> 1.8)
|
|
14
14
|
rest-client (>= 1.6.8, < 2)
|
|
15
|
-
simplecov (~> 0.
|
|
15
|
+
simplecov (~> 0.11.0)
|
|
16
16
|
term-ansicolor (~> 1.3)
|
|
17
17
|
thor (~> 0.19.1)
|
|
18
18
|
tins (~> 1.6.0)
|
|
@@ -49,14 +49,14 @@ GEM
|
|
|
49
49
|
json (1.8.3)
|
|
50
50
|
jwt (1.5.0)
|
|
51
51
|
mime-types (2.99)
|
|
52
|
-
|
|
52
|
+
mini_portile2 (2.0.0)
|
|
53
53
|
minitest (5.7.0)
|
|
54
54
|
multi_json (1.11.1)
|
|
55
55
|
multi_xml (0.5.5)
|
|
56
56
|
multipart-post (2.0.0)
|
|
57
57
|
netrc (0.11.0)
|
|
58
|
-
nokogiri (1.6.
|
|
59
|
-
|
|
58
|
+
nokogiri (1.6.7.2)
|
|
59
|
+
mini_portile2 (~> 2.0.0.rc2)
|
|
60
60
|
oauth2 (1.0.0)
|
|
61
61
|
faraday (>= 0.8, < 0.10)
|
|
62
62
|
jwt (~> 1.0)
|
|
@@ -77,7 +77,7 @@ GEM
|
|
|
77
77
|
shoulda-context (1.2.1)
|
|
78
78
|
shoulda-matchers (2.8.0)
|
|
79
79
|
activesupport (>= 3.0.0)
|
|
80
|
-
simplecov (0.
|
|
80
|
+
simplecov (0.11.1)
|
|
81
81
|
docile (~> 1.1.0)
|
|
82
82
|
json (~> 1.8)
|
|
83
83
|
simplecov-html (~> 0.10.0)
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.4
|
data/textfile.gemspec
CHANGED
|
@@ -2,16 +2,16 @@
|
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
|
-
# stub: textfile 1.0.
|
|
5
|
+
# stub: textfile 1.0.4 ruby lib
|
|
6
6
|
|
|
7
7
|
Gem::Specification.new do |s|
|
|
8
8
|
s.name = "textfile"
|
|
9
|
-
s.version = "1.0.
|
|
9
|
+
s.version = "1.0.4"
|
|
10
10
|
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
12
12
|
s.require_paths = ["lib"]
|
|
13
13
|
s.authors = ["Piers Chambers"]
|
|
14
|
-
s.date = "
|
|
14
|
+
s.date = "2016-01-28"
|
|
15
15
|
s.description = "Set-like wrapper around GNU comm and related textfile utilities.\n\nA common use case is to identify differences between exported datasets where the datasets may exceed 100K rows and each row may exceed 4K characters."
|
|
16
16
|
s.email = "piers@varyonic.com"
|
|
17
17
|
s.extra_rdoc_files = [
|
|
@@ -34,7 +34,7 @@ Gem::Specification.new do |s|
|
|
|
34
34
|
]
|
|
35
35
|
s.homepage = "http://github.com/varyonic/textfile"
|
|
36
36
|
s.licenses = ["MIT"]
|
|
37
|
-
s.rubygems_version = "2.
|
|
37
|
+
s.rubygems_version = "2.2.2"
|
|
38
38
|
s.summary = "Set-like wrapper around GNU comm and related textfile utilities."
|
|
39
39
|
|
|
40
40
|
if s.respond_to? :specification_version then
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: textfile
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Piers Chambers
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2016-01-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: shoulda
|
|
@@ -137,7 +137,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
137
137
|
version: '0'
|
|
138
138
|
requirements: []
|
|
139
139
|
rubyforge_project:
|
|
140
|
-
rubygems_version: 2.
|
|
140
|
+
rubygems_version: 2.2.2
|
|
141
141
|
signing_key:
|
|
142
142
|
specification_version: 4
|
|
143
143
|
summary: Set-like wrapper around GNU comm and related textfile utilities.
|