gli 2.21.0 → 2.21.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: 0017e490227889383633bf3d4fc2f85783aa50cd86587fd35b704f4fa036d1c3
4
- data.tar.gz: 96667382f9092e22abc794e6967d969cecea12339675e46d8a2990df0067810c
3
+ metadata.gz: 4c5897528d1a6f46c909f258df73970b5d91b23442fabbbe3324266462e61153
4
+ data.tar.gz: fe51d0fdfed0f4ee886f13d0cc70d02b346dd5e2243323927b0641e724173a15
5
5
  SHA512:
6
- metadata.gz: 7b76b5845f5beb5907d7c11355c5e02ba22521f124c0486f5d1d08ae75969338bc23434ac680da72306cd761cdaac986fb01c966e8eb14a664eb84db95164e82
7
- data.tar.gz: 55f76b94f22cf271a93bc0e0916c1a500175fbaa5a45a01c74372042baba384da6660f5860946bf803c7db14c23712f51249ee03c6a1a2d9d52c3da05638eaeb
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@1.4.0
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
- ruby-version: [ "2.5", "2.6", "2.7", "3.0" ]
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
@@ -106,5 +106,5 @@ end
106
106
  desc 'Publish rdoc on github pages and push to github'
107
107
  task :publish_rdoc => [:rdoc,:publish]
108
108
 
109
- task :default => ["test:unit", "test:integraton"]
109
+ task :default => ["test:unit", "test:integration"]
110
110
 
@@ -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','~> 0.9.2')
74
- s.add_development_dependency('rdoc', '~> 4.3')
75
- s.add_development_dependency('minitest', '~> 5.14')
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
@@ -1,5 +1,5 @@
1
1
  module GLI
2
2
  unless const_defined? :VERSION
3
- VERSION = '2.21.0'
3
+ VERSION = '2.21.1'
4
4
  end
5
5
  end
@@ -36,7 +36,7 @@ class GLIPoweredAppTest < MiniTest::Test
36
36
 
37
37
  def test_doc_generation
38
38
  out, err, status = run_app("_doc", return_err_and_status: true)
39
- assert File.exists?("todo.rdoc")
39
+ assert File.exist?("todo.rdoc")
40
40
  end
41
41
 
42
42
  private
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.0
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: 2022-01-26 00:00:00.000000000 Z
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.1.2
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: []