partline 1.0.1 → 1.0.2
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/README.md +1 -3
- data/lib/partline/version.rb +1 -1
- data/partline.gemspec +2 -3
- metadata +5 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dc9173582673c02291181835cfb633a2bcaba4cc
|
4
|
+
data.tar.gz: 83ab4d21a6be857836eb67cd233cedadc4ef771d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b5297fd26c9bf115ef0bfb3fbee567c91b7680ce63c034b57421c842ae5becb40d8f930c4ca43e7d6650dae444567fe699be57fec50350e1c263419d5b5a50fd
|
7
|
+
data.tar.gz: 4e1807f1de4ba7fe576da85d721d995f5a33087fde906eab738038ed78bc681518aa36e7000d2f65c953473833d7ad73be830a4b3324b5f87af31f78f0ede9fc
|
data/README.md
CHANGED
@@ -1,7 +1,6 @@
|
|
1
1
|
# Partline
|
2
2
|
|
3
|
-
I originally made this to remove comments from an input file.
|
4
|
-
remove anything passed to it but have not tested it.
|
3
|
+
I originally made this to remove comments from an input file.
|
5
4
|
|
6
5
|
This was made fairly quickly, it may not be following best practices and may
|
7
6
|
have some bugs.
|
@@ -23,4 +22,3 @@ Bug reports and pull requests are welcome on GitHub at https://github.com/jamesl
|
|
23
22
|
## License
|
24
23
|
|
25
24
|
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
26
|
-
|
data/lib/partline/version.rb
CHANGED
data/partline.gemspec
CHANGED
@@ -10,9 +10,8 @@ Gem::Specification.new do |spec|
|
|
10
10
|
spec.authors = ["James Wren"]
|
11
11
|
spec.email = ["jameslwren@gmail.com"]
|
12
12
|
|
13
|
-
spec.summary = %q{Takes a file as input and
|
14
|
-
spec.description = %q{
|
15
|
-
Could probably remove anything provided to it but have not tested it.}
|
13
|
+
spec.summary = %q{Takes a file as input and a parameter to part lines on}
|
14
|
+
spec.description = %q{Command line tool originally made to remove comments from an input file.}
|
16
15
|
spec.license = "MIT"
|
17
16
|
|
18
17
|
if spec.respond_to?(:metadata)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: partline
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- James Wren
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-07-
|
11
|
+
date: 2016-07-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -52,9 +52,7 @@ dependencies:
|
|
52
52
|
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '5.0'
|
55
|
-
description:
|
56
|
-
Originally made to remove comments from an input file.
|
57
|
-
Could probably remove anything provided to it but have not tested it.
|
55
|
+
description: Command line tool originally made to remove comments from an input file.
|
58
56
|
email:
|
59
57
|
- jameslwren@gmail.com
|
60
58
|
executables:
|
@@ -97,8 +95,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
97
95
|
version: '0'
|
98
96
|
requirements: []
|
99
97
|
rubyforge_project:
|
100
|
-
rubygems_version: 2.
|
98
|
+
rubygems_version: 2.5.1
|
101
99
|
signing_key:
|
102
100
|
specification_version: 4
|
103
|
-
summary: Takes a file as input and
|
101
|
+
summary: Takes a file as input and a parameter to part lines on
|
104
102
|
test_files: []
|