gli 2.21.0 → 2.21.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.circleci/config.yml +4 -2
- data/Rakefile +1 -1
- data/lib/gli/commands/scaffold.rb +3 -3
- data/lib/gli/version.rb +1 -1
- data/test/integration/gli_powered_app_test.rb +1 -1
- metadata +7 -53
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4c5897528d1a6f46c909f258df73970b5d91b23442fabbbe3324266462e61153
|
4
|
+
data.tar.gz: fe51d0fdfed0f4ee886f13d0cc70d02b346dd5e2243323927b0641e724173a15
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7877fdd663edee99a4df3a6c18c4df51fda9058382736583b22fac289834642eec9088800323df8168cf2d726ac8dcc7411f8686a1b5c57e2aa226fa7fc99312
|
7
|
+
data.tar.gz: d8f84289b949bd8d92ed1716327e8c8446b9bef71a596d9c9d30f5a098957c1b53bd48b3b9d848d005e6543139222514bda226476b50054d644eb2e2846070b3
|
data/.circleci/config.yml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
version: 2.1
|
2
2
|
orbs:
|
3
3
|
# See https://circleci.com/developer/orbs/orb/circleci/ruby
|
4
|
-
ruby: circleci/ruby@
|
4
|
+
ruby: circleci/ruby@2.0.1
|
5
5
|
jobs: # keyword
|
6
6
|
test: # my name for the job
|
7
7
|
parameters: # keyword
|
@@ -25,4 +25,6 @@ workflows: # keyword
|
|
25
25
|
parameters: # keyword
|
26
26
|
# All rubies being maintained per this page:
|
27
27
|
# https://www.ruby-lang.org/en/downloads/branches/
|
28
|
-
|
28
|
+
# These also need to have complete version numbers
|
29
|
+
# or rvm won't install
|
30
|
+
ruby-version: [ "3.0.4", "3.1.3", "3.2.2" ]
|
data/Rakefile
CHANGED
@@ -70,9 +70,9 @@ spec = Gem::Specification.new do |s|
|
|
70
70
|
s.rdoc_options << '--title' << '#{project_name}' << '--main' << 'README.rdoc' << '-ri'
|
71
71
|
s.bindir = 'bin'
|
72
72
|
s.executables << '#{project_name}'
|
73
|
-
s.add_development_dependency('rake'
|
74
|
-
s.add_development_dependency('rdoc'
|
75
|
-
s.add_development_dependency('minitest'
|
73
|
+
s.add_development_dependency('rake')
|
74
|
+
s.add_development_dependency('rdoc')
|
75
|
+
s.add_development_dependency('minitest')
|
76
76
|
s.add_runtime_dependency('gli','~> #{GLI::VERSION}')
|
77
77
|
end
|
78
78
|
EOS
|
data/lib/gli/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gli
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.21.
|
4
|
+
version: 2.21.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David Copeland
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-07-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
@@ -205,7 +205,7 @@ homepage: http://davetron5000.github.io/gli
|
|
205
205
|
licenses:
|
206
206
|
- Apache-2.0
|
207
207
|
metadata: {}
|
208
|
-
post_install_message:
|
208
|
+
post_install_message:
|
209
209
|
rdoc_options:
|
210
210
|
- "--title"
|
211
211
|
- Git Like Interface
|
@@ -224,54 +224,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
224
224
|
- !ruby/object:Gem::Version
|
225
225
|
version: '0'
|
226
226
|
requirements: []
|
227
|
-
rubygems_version: 3.
|
228
|
-
signing_key:
|
227
|
+
rubygems_version: 3.4.17
|
228
|
+
signing_key:
|
229
229
|
specification_version: 4
|
230
230
|
summary: Build command-suite CLI apps that are awesome.
|
231
|
-
test_files:
|
232
|
-
- test/apps/README.md
|
233
|
-
- test/apps/todo/Gemfile
|
234
|
-
- test/apps/todo/README.rdoc
|
235
|
-
- test/apps/todo/Rakefile
|
236
|
-
- test/apps/todo/bin/todo
|
237
|
-
- test/apps/todo/lib/todo/commands/create.rb
|
238
|
-
- test/apps/todo/lib/todo/commands/list.rb
|
239
|
-
- test/apps/todo/lib/todo/commands/ls.rb
|
240
|
-
- test/apps/todo/lib/todo/commands/make.rb
|
241
|
-
- test/apps/todo/lib/todo/version.rb
|
242
|
-
- test/apps/todo/test/tc_nothing.rb
|
243
|
-
- test/apps/todo/todo.gemspec
|
244
|
-
- test/apps/todo/todo.rdoc
|
245
|
-
- test/apps/todo_legacy/Gemfile
|
246
|
-
- test/apps/todo_legacy/README.rdoc
|
247
|
-
- test/apps/todo_legacy/Rakefile
|
248
|
-
- test/apps/todo_legacy/bin/todo
|
249
|
-
- test/apps/todo_legacy/lib/todo/commands/create.rb
|
250
|
-
- test/apps/todo_legacy/lib/todo/commands/list.rb
|
251
|
-
- test/apps/todo_legacy/lib/todo/commands/ls.rb
|
252
|
-
- test/apps/todo_legacy/lib/todo/version.rb
|
253
|
-
- test/apps/todo_legacy/test/tc_nothing.rb
|
254
|
-
- test/apps/todo_legacy/todo.gemspec
|
255
|
-
- test/apps/todo_legacy/todo.rdoc
|
256
|
-
- test/apps/todo_plugins/commands/third.rb
|
257
|
-
- test/integration/gli_cli_test.rb
|
258
|
-
- test/integration/gli_powered_app_test.rb
|
259
|
-
- test/integration/scaffold_test.rb
|
260
|
-
- test/integration/test_helper.rb
|
261
|
-
- test/unit/command_finder_test.rb
|
262
|
-
- test/unit/command_test.rb
|
263
|
-
- test/unit/compound_command_test.rb
|
264
|
-
- test/unit/doc_test.rb
|
265
|
-
- test/unit/flag_test.rb
|
266
|
-
- test/unit/gli_test.rb
|
267
|
-
- test/unit/help_test.rb
|
268
|
-
- test/unit/init_simplecov.rb
|
269
|
-
- test/unit/options_test.rb
|
270
|
-
- test/unit/subcommand_parsing_test.rb
|
271
|
-
- test/unit/subcommands_test.rb
|
272
|
-
- test/unit/support/fake_std_out.rb
|
273
|
-
- test/unit/support/gli_test_config.yml
|
274
|
-
- test/unit/switch_test.rb
|
275
|
-
- test/unit/terminal_test.rb
|
276
|
-
- test/unit/test_helper.rb
|
277
|
-
- test/unit/verbatim_wrapper_test.rb
|
231
|
+
test_files: []
|