gli 2.20.0 → 2.20.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f99bcd6fc563c75307924a23694720c7a5a68d0957afbb7b25fb15e21257011c
4
- data.tar.gz: 9e508b67d421593391c447f3778c90df01565f36e5db41cab83fce806bdc6417
3
+ metadata.gz: 5d3bbbc287b9e950b0e466400f14518010968c40a444cfa22486a51fa734134d
4
+ data.tar.gz: d4414c2e6c9f981a7ccbad490fea52f0519ec45a6a7634f44d9ed4cfad3b1c24
5
5
  SHA512:
6
- metadata.gz: bbfbd6572090c9a8b86ae7e165cbb3b12d5500fa3dda114bb1add6375ea32864e38b0857d29ba399deb3f45250d655ec61c6acb78d8c5bc9172c1e0eebfa0d20
7
- data.tar.gz: 8ad9e606b644c9374a616cfd0d013ffc90909851d77f0b96fc366debb274e55698388e749756318db2437d23a640f4118459ada89b8d1ca1e035f507576611ff
6
+ metadata.gz: b432b2e5d295bf7b3cf61683b1819353bca64158c5d07ed11135cd94ae8917dd352653f169f3306e1b26fcc9bce2199a5898d889f0819961b1260ee31fe5d710
7
+ data.tar.gz: 60d93d19cfdc621cbfee7189140447f0fa074354153c6d840e67fff516a6bf06ebb9668d3c420b6e66e6103c4ccfd969742cf26760c68c6f091f660b8d40a6aa
data/README.rdoc CHANGED
@@ -2,9 +2,9 @@
2
2
 
3
3
  GLI allows you to create command-line app in Ruby that behaves like <tt>git</tt> in that it takes subcommands to perform a series of complex action, e.g. <tt>git remote add</tt>.
4
4
 
5
- * {Overview}[http://davetron5000.github.com/gli]
5
+ * {Overview}[http://davetron5000.github.io/gli]
6
6
  * {Source on Github}[http://github.com/davetron5000/gli]
7
- * RDoc[http://davetron5000.github.com/gli/rdoc/index.html]
7
+ * RDoc[http://davetron5000.github.io/gli/rdoc/index.html]
8
8
 
9
9
  {<img src="https://secure.travis-ci.org/davetron5000/gli.svg?branch=gli-2" alt="Build Status" />}[https://travis-ci.org/davetron5000/gli]
10
10
 
@@ -88,7 +88,7 @@ Now, you are ready to go:
88
88
 
89
89
  All you need to do is fill in the documentation and your code; the help system, command-line parsing and many other awesome features are all handled for you.
90
90
 
91
- Get a more detailed walkthrough on the {main site}[http://davetron5000.github.com/gli]
91
+ Get a more detailed walkthrough on the {main site}[http://davetron5000.github.io/gli]
92
92
 
93
93
  == Supported Platforms
94
94
 
@@ -100,7 +100,7 @@ GLI should work on older Rubies and JRuby, but it's too much work to keep tests
100
100
 
101
101
  Extensive documentation is {available at the wiki}[https://github.com/davetron5000/gli/wiki].
102
102
 
103
- API Documentation is available {here}[http://davetron5000.github.com/gli/rdoc/index.html]. Recommend starting with GLI::DSL or GLI::App.
103
+ API Documentation is available {here}[http://davetron5000.github.io/gli/rdoc/index.html]. Recommend starting with GLI::DSL or GLI::App.
104
104
 
105
105
  == Credits
106
106
 
@@ -110,7 +110,7 @@ License:: Distributes under the Apache License, see LICENSE.txt in the source di
110
110
 
111
111
  == Links
112
112
 
113
- * [http://davetron5000.github.com/gli] - RubyDoc
113
+ * [http://davetron5000.github.io/gli] - RubyDoc
114
114
  * [http://www.github.com/davetron5000/gli] - Source on GitHub
115
115
  * [http://www.github.com/davetron5000/gli/wiki] - Documentation Wiki
116
116
  * [http://www.github.com/davetron5000/gli/wiki/Changelog] - Changelog
data/Rakefile CHANGED
@@ -77,12 +77,18 @@ desc "run unit tests"
77
77
  Rake::TestTask.new("test:unit") do |t|
78
78
  t.libs << "test"
79
79
  t.libs << "lib"
80
+ ENV["RUBYOPT"].split(/\s/).each do |opt|
81
+ t.ruby_opts << opt
82
+ end
80
83
  t.test_files = FileList["test/unit/**/*_test.rb"]
81
84
  end
82
85
 
83
86
  desc "run integration tests"
84
87
  Rake::TestTask.new("test:integration") do |t|
85
88
  t.libs << "test"
89
+ ENV["RUBYOPT"].split(/\s/).each do |opt|
90
+ t.ruby_opts << opt
91
+ end
86
92
  explicitly_named_files = ARGV[1..-1]
87
93
  if Array(explicitly_named_files).size == 0
88
94
  t.test_files = FileList["test/integration/**/*_test.rb"]
data/gli.gemspec CHANGED
@@ -7,7 +7,7 @@ spec = Gem::Specification.new do |s|
7
7
  s.licenses = ["Apache-2.0"]
8
8
  s.author = "David Copeland"
9
9
  s.email = "davidcopeland@naildrivin5.com"
10
- s.homepage = "http://davetron5000.github.com/gli"
10
+ s.homepage = "http://davetron5000.github.io/gli"
11
11
  s.platform = Gem::Platform::RUBY
12
12
  s.summary = "Build command-suite CLI apps that are awesome."
13
13
  s.description = "Build command-suite CLI apps that are awesome. Bootstrap your app, add commands, options and documentation while maintaining a well-tested idiomatic command-line app"
@@ -22,9 +22,9 @@ spec = Gem::Specification.new do |s|
22
22
  s.bindir = "exe"
23
23
  s.executables = "gli"
24
24
 
25
- s.add_development_dependency("rake", "~> 0.9.2.2")
26
- s.add_development_dependency("rdoc", "~> 4.2")
25
+ s.add_development_dependency("rake")
26
+ s.add_development_dependency("rdoc")
27
27
  s.add_development_dependency("rainbow", "~> 1.1", "~> 1.1.1")
28
- s.add_development_dependency("sdoc", "~> 0.4")
28
+ s.add_development_dependency("sdoc")
29
29
  s.add_development_dependency("minitest")
30
30
  end
data/lib/gli/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  module GLI
2
2
  unless const_defined? :VERSION
3
- VERSION = '2.20.0'
3
+ VERSION = '2.20.1'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,43 +1,43 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gli
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.20.0
4
+ version: 2.20.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Copeland
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-02-13 00:00:00.000000000 Z
11
+ date: 2021-06-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.9.2.2
19
+ version: '0'
20
20
  type: :development
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - "~>"
24
+ - - ">="
25
25
  - !ruby/object:Gem::Version
26
- version: 0.9.2.2
26
+ version: '0'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rdoc
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - "~>"
31
+ - - ">="
32
32
  - !ruby/object:Gem::Version
33
- version: '4.2'
33
+ version: '0'
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - "~>"
38
+ - - ">="
39
39
  - !ruby/object:Gem::Version
40
- version: '4.2'
40
+ version: '0'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: rainbow
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -62,16 +62,16 @@ dependencies:
62
62
  name: sdoc
63
63
  requirement: !ruby/object:Gem::Requirement
64
64
  requirements:
65
- - - "~>"
65
+ - - ">="
66
66
  - !ruby/object:Gem::Version
67
- version: '0.4'
67
+ version: '0'
68
68
  type: :development
69
69
  prerelease: false
70
70
  version_requirements: !ruby/object:Gem::Requirement
71
71
  requirements:
72
- - - "~>"
72
+ - - ">="
73
73
  - !ruby/object:Gem::Version
74
- version: '0.4'
74
+ version: '0'
75
75
  - !ruby/object:Gem::Dependency
76
76
  name: minitest
77
77
  requirement: !ruby/object:Gem::Requirement
@@ -201,7 +201,7 @@ files:
201
201
  - test/unit/terminal_test.rb
202
202
  - test/unit/test_helper.rb
203
203
  - test/unit/verbatim_wrapper_test.rb
204
- homepage: http://davetron5000.github.com/gli
204
+ homepage: http://davetron5000.github.io/gli
205
205
  licenses:
206
206
  - Apache-2.0
207
207
  metadata: {}