line 1.0.0 → 1.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/.gitignore +1 -0
- data/.travis.yml +5 -0
- data/README.md +2 -0
- data/lib/line/version.rb +1 -1
- data/line.gemspec +1 -1
- metadata +4 -3
- data/Gemfile.lock +0 -26
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 105eed9fc3da804f9978100057e0515f2f0c07e5
|
|
4
|
+
data.tar.gz: 1b9b386e5d7b12f1cf85ffeba5e00a24907f663e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7dfcff11242537e94dcc2e9766f8e6def4262c32635bccabaf5cbae846d561bf89186a5faef46c6fbee87251cdb155a460ba7f1fb1e0951d16e63cd8de4fcc75
|
|
7
|
+
data.tar.gz: 7123f1aba63e07958fcd869e0947ef032cbde1769c50654de8861d843927fd5c95f27fff72635946988d96a7c2905f907991973698be4fa9e00389cc9f302b22
|
data/.gitignore
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
*.gem
|
data/.travis.yml
ADDED
data/README.md
CHANGED
data/lib/line/version.rb
CHANGED
data/line.gemspec
CHANGED
|
@@ -7,7 +7,7 @@ Gem::Specification.new do |s|
|
|
|
7
7
|
s.version = Line::VERSION
|
|
8
8
|
s.authors = ["Josh Cheek"]
|
|
9
9
|
s.email = ["josh.cheek@gmail.com"]
|
|
10
|
-
s.homepage = "https://github.com/JoshCheek/
|
|
10
|
+
s.homepage = "https://github.com/JoshCheek/line"
|
|
11
11
|
s.summary = %q{Command line tool to filter lines of input based on index.}
|
|
12
12
|
s.description = %q{Command line tool to filter lines of input based on index.}
|
|
13
13
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: line
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Josh Cheek
|
|
@@ -46,8 +46,9 @@ executables:
|
|
|
46
46
|
extensions: []
|
|
47
47
|
extra_rdoc_files: []
|
|
48
48
|
files:
|
|
49
|
+
- .gitignore
|
|
50
|
+
- .travis.yml
|
|
49
51
|
- Gemfile
|
|
50
|
-
- Gemfile.lock
|
|
51
52
|
- README.md
|
|
52
53
|
- bin/line
|
|
53
54
|
- lib/line.rb
|
|
@@ -72,7 +73,7 @@ files:
|
|
|
72
73
|
- spec/queue_with_indexes_spec.rb
|
|
73
74
|
- spec/spec_helper.rb
|
|
74
75
|
- spec/spec_helper_spec.rb
|
|
75
|
-
homepage: https://github.com/JoshCheek/
|
|
76
|
+
homepage: https://github.com/JoshCheek/line
|
|
76
77
|
licenses: []
|
|
77
78
|
metadata: {}
|
|
78
79
|
post_install_message:
|
data/Gemfile.lock
DELETED
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
PATH
|
|
2
|
-
remote: .
|
|
3
|
-
specs:
|
|
4
|
-
line (1.0.0)
|
|
5
|
-
|
|
6
|
-
GEM
|
|
7
|
-
remote: http://rubygems.org/
|
|
8
|
-
specs:
|
|
9
|
-
diff-lcs (1.2.1)
|
|
10
|
-
rspec (2.13.0)
|
|
11
|
-
rspec-core (~> 2.13.0)
|
|
12
|
-
rspec-expectations (~> 2.13.0)
|
|
13
|
-
rspec-mocks (~> 2.13.0)
|
|
14
|
-
rspec-core (2.13.1)
|
|
15
|
-
rspec-expectations (2.13.0)
|
|
16
|
-
diff-lcs (>= 1.1.3, < 2.0)
|
|
17
|
-
rspec-mocks (2.13.0)
|
|
18
|
-
surrogate (0.7.0)
|
|
19
|
-
|
|
20
|
-
PLATFORMS
|
|
21
|
-
ruby
|
|
22
|
-
|
|
23
|
-
DEPENDENCIES
|
|
24
|
-
line!
|
|
25
|
-
rspec
|
|
26
|
-
surrogate
|