ginny 0.6.0 → 0.6.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/CHANGELOG.md +6 -0
- data/Gemfile.lock +1 -1
- data/README.md +1 -1
- data/exe/ginny +4 -4
- data/lib/ginny/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b7194c622d2bc7c17942e6502b82642b734cfdc5ea572191d853e15ab0b25904
|
|
4
|
+
data.tar.gz: ea4d7610a2e68cd489df5f6ef849d0f3a80874d1f4780f1613e5290217d92447
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 863a38ccd36579ba3f21807339dc6e14b3775ba10496a3b41586c4549dc5797324c579d0fdb0a97158f4a2880242d52fcb126eeff9ab061efe820e1cf66598f2
|
|
7
|
+
data.tar.gz: f82a75ea7a8e850371b3b5b1d82bec416cc16be2a5e9385436b2d2618cc6e214cde499dd93779bfc67700255d9077351c6ace1de1fdc10ad9a261cd39f3ccae0
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
[rubygems]: https://rubygems.org/gems/ginny
|
|
10
10
|
[travis-ci]: https://travis-ci.org/tcd/ginny
|
|
11
11
|
[coveralls-ci]: https://coveralls.io/github/tcd/ginny?branch=master
|
|
12
|
-
[rubydoc-gem]: https://www.rubydoc.info/gems/ginny/0.
|
|
12
|
+
[rubydoc-gem]: https://www.rubydoc.info/gems/ginny/0.6.1
|
|
13
13
|
[license]: https://github.com/tcd/ginny/blob/master/LICENSE.txt
|
|
14
14
|
|
|
15
15
|
|
data/exe/ginny
CHANGED
|
@@ -6,14 +6,14 @@ options = {}
|
|
|
6
6
|
|
|
7
7
|
optparse = OptionParser.new do |opts|
|
|
8
8
|
opts.banner = "Usage: ginny [options] [path]"
|
|
9
|
-
options[:verbose] = false
|
|
10
|
-
opts.on("-v", "--verbose", "Output more information") do
|
|
11
|
-
options[:verbose] = true
|
|
12
|
-
end
|
|
13
9
|
opts.on("-h", "--help", "Display this screen") do
|
|
14
10
|
puts(opts)
|
|
15
11
|
exit(0)
|
|
16
12
|
end
|
|
13
|
+
opts.on("-v", "--version", "Display version information") do
|
|
14
|
+
puts("Ginny version #{Ginny::VERSION}")
|
|
15
|
+
exit(0)
|
|
16
|
+
end
|
|
17
17
|
end
|
|
18
18
|
|
|
19
19
|
optparse.parse!
|
data/lib/ginny/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ginny
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.6.
|
|
4
|
+
version: 0.6.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Clay Dunston
|
|
@@ -191,7 +191,7 @@ licenses:
|
|
|
191
191
|
metadata:
|
|
192
192
|
homepage_uri: https://github.com/tcd/ginny
|
|
193
193
|
source_code_uri: https://github.com/tcd/ginny
|
|
194
|
-
documentation_uri: https://www.rubydoc.info/gems/ginny/0.6.
|
|
194
|
+
documentation_uri: https://www.rubydoc.info/gems/ginny/0.6.1
|
|
195
195
|
changelog_uri: https://github.com/tcd/ginny/blob/master/CHANGELOG.md
|
|
196
196
|
yard.run: yri
|
|
197
197
|
post_install_message:
|