thor_nested_subcommand 1.0.0 → 1.0.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: f44a5dd3d7c41a69266bd8b5f39714b31a1deb9dc1950d37483096a569d5f557
4
- data.tar.gz: 402eb19a513f126c1d98ec6b551319400c5113114319274a278e00f0bb5436a4
3
+ metadata.gz: 8035a39ac6fd5e48537b393197da5bd5ffb1cf3f1f974619b5ffefadf0b8412d
4
+ data.tar.gz: ae27a4808832e09816fe75c5ed13898368eb190c629ad9387fa040abb9d5523c
5
5
  SHA512:
6
- metadata.gz: f30c556d8f3d6a5047c5f27b14f4bfeaa327d6a39f2401289c0a573a5efea58a29f699aec332c2809b7a77d11129ca4f24fb379d1a625bce99d37680ea34381e
7
- data.tar.gz: b7ba58c782711544b16a4842176d91b018b3682c992538225f776a767ad68f487493bd15168af8e670bdb718460e634acec2b757861884804840f57dd0571bab
6
+ metadata.gz: 05cbb586e340e7638b8dc2e4199f174660967d56789a8aa65365679068fcbc2043e2f0fb369c9fed46de5a2cc01ed869444a5f03ae420bc47336fad6318f136b
7
+ data.tar.gz: 24ccb048be07036d63c50612675fee900000cc7ea4be0fd44ed9e0a208d4369d4ff060efd541f6f1acc171173bbf7728e97c329883278c212b55c50ad06555c3
data/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [1.0.1] - 2022-08-17
2
+
3
+ Changes
4
+
5
+ - Update Ruby gems.
6
+ - Fix rubocop errors.
7
+
1
8
  ## [1.0.0] - 2022-10-06
2
9
 
3
- - Initial release
10
+ Initial release
data/Gemfile CHANGED
@@ -6,10 +6,10 @@ source 'https://rubygems.org'
6
6
  gemspec
7
7
 
8
8
  gem 'rake', '~> 13.0'
9
- gem 'rspec', '~> 3.0'
10
- gem 'rubocop', '~> 0.81.0'
9
+ gem 'rspec', '~> 3.12'
10
+ gem 'rubocop', '~> 1.42.0'
11
11
 
12
12
  gem 'pry-byebug', '~> 3.9'
13
- gem 'reek', '~> 6.1', '>= 6.1.1'
14
- gem 'simplecov', '~> 0.21.2'
15
- gem 'thor', '~> 1.2', '>= 1.2.1'
13
+ gem 'reek', '~> 6.1'
14
+ gem 'simplecov', '~> 0.22.0'
15
+ gem 'thor', '~> 1.2'
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- thor_nested_subcommand (1.0.0)
4
+ thor_nested_subcommand (1.0.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -11,67 +11,75 @@ GEM
11
11
  coderay (1.1.3)
12
12
  diff-lcs (1.5.0)
13
13
  docile (1.4.0)
14
- jaro_winkler (1.5.4)
14
+ json (2.6.3)
15
15
  kwalify (0.7.2)
16
16
  method_source (1.0.0)
17
- parallel (1.22.1)
18
- parser (3.1.2.1)
17
+ parallel (1.23.0)
18
+ parser (3.2.2.3)
19
19
  ast (~> 2.4.1)
20
- pry (0.14.1)
20
+ racc
21
+ pry (0.14.2)
21
22
  coderay (~> 1.1)
22
23
  method_source (~> 1.0)
23
24
  pry-byebug (3.10.1)
24
25
  byebug (~> 11.0)
25
26
  pry (>= 0.13, < 0.15)
27
+ racc (1.7.1)
26
28
  rainbow (3.1.1)
27
29
  rake (13.0.6)
28
- reek (6.1.1)
30
+ reek (6.1.4)
29
31
  kwalify (~> 0.7.0)
30
- parser (~> 3.1.0)
32
+ parser (~> 3.2.0)
31
33
  rainbow (>= 2.0, < 4.0)
32
- rexml (3.2.5)
33
- rspec (3.11.0)
34
- rspec-core (~> 3.11.0)
35
- rspec-expectations (~> 3.11.0)
36
- rspec-mocks (~> 3.11.0)
37
- rspec-core (3.11.0)
38
- rspec-support (~> 3.11.0)
39
- rspec-expectations (3.11.1)
34
+ regexp_parser (2.8.1)
35
+ rexml (3.2.6)
36
+ rspec (3.12.0)
37
+ rspec-core (~> 3.12.0)
38
+ rspec-expectations (~> 3.12.0)
39
+ rspec-mocks (~> 3.12.0)
40
+ rspec-core (3.12.2)
41
+ rspec-support (~> 3.12.0)
42
+ rspec-expectations (3.12.3)
40
43
  diff-lcs (>= 1.2.0, < 2.0)
41
- rspec-support (~> 3.11.0)
42
- rspec-mocks (3.11.1)
44
+ rspec-support (~> 3.12.0)
45
+ rspec-mocks (3.12.6)
43
46
  diff-lcs (>= 1.2.0, < 2.0)
44
- rspec-support (~> 3.11.0)
45
- rspec-support (3.11.1)
46
- rubocop (0.81.0)
47
- jaro_winkler (~> 1.5.1)
47
+ rspec-support (~> 3.12.0)
48
+ rspec-support (3.12.1)
49
+ rubocop (1.42.0)
50
+ json (~> 2.3)
48
51
  parallel (~> 1.10)
49
- parser (>= 2.7.0.1)
52
+ parser (>= 3.1.2.1)
50
53
  rainbow (>= 2.2.2, < 4.0)
51
- rexml
54
+ regexp_parser (>= 1.8, < 3.0)
55
+ rexml (>= 3.2.5, < 4.0)
56
+ rubocop-ast (>= 1.24.1, < 2.0)
52
57
  ruby-progressbar (~> 1.7)
53
- unicode-display_width (>= 1.4.0, < 2.0)
54
- ruby-progressbar (1.11.0)
55
- simplecov (0.21.2)
58
+ unicode-display_width (>= 1.4.0, < 3.0)
59
+ rubocop-ast (1.29.0)
60
+ parser (>= 3.2.1.0)
61
+ ruby-progressbar (1.13.0)
62
+ simplecov (0.22.0)
56
63
  docile (~> 1.1)
57
64
  simplecov-html (~> 0.11)
58
65
  simplecov_json_formatter (~> 0.1)
59
66
  simplecov-html (0.12.3)
60
67
  simplecov_json_formatter (0.1.4)
61
- thor (1.2.1)
62
- unicode-display_width (1.8.0)
68
+ thor (1.2.2)
69
+ unicode-display_width (2.4.2)
63
70
 
64
71
  PLATFORMS
65
72
  x86_64-darwin-19
73
+ x86_64-linux
66
74
 
67
75
  DEPENDENCIES
68
76
  pry-byebug (~> 3.9)
69
77
  rake (~> 13.0)
70
- reek (~> 6.1, >= 6.1.1)
71
- rspec (~> 3.0)
72
- rubocop (~> 0.81.0)
73
- simplecov (~> 0.21.2)
74
- thor (~> 1.2, >= 1.2.1)
78
+ reek (~> 6.1)
79
+ rspec (~> 3.12)
80
+ rubocop (~> 1.42.0)
81
+ simplecov (~> 0.22.0)
82
+ thor (~> 1.2)
75
83
  thor_nested_subcommand!
76
84
 
77
85
  BUNDLED WITH
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ThorNestedSubcommand
4
- VERSION = '1.0.0'
4
+ VERSION = '1.0.1'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: thor_nested_subcommand
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gene M. Angelo, Jr.
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-10-07 00:00:00.000000000 Z
11
+ date: 2023-08-17 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: |2
14
14
  `ThorNestedSubcommand` is a Ruby gem that provides a workaround for the
@@ -42,7 +42,6 @@ files:
42
42
  - sig/thor_nested_subcommand.rbs
43
43
  - snippets.rb
44
44
  - thor_nested_subcommand.code-workspace
45
- - thor_nested_subcommand.gemspec
46
45
  homepage: https://github.com/gangelo/thor_nested_subcommand
47
46
  licenses:
48
47
  - MIT
@@ -1,46 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require_relative 'lib/thor_nested_subcommand/version'
4
-
5
- Gem::Specification.new do |spec|
6
- spec.name = 'thor_nested_subcommand'
7
- spec.version = ThorNestedSubcommand::VERSION
8
- spec.authors = ['Gene M. Angelo, Jr.']
9
- spec.email = ['public.gma@gmail.com']
10
-
11
- spec.summary = 'A workaround for the Thor gem bug that displays nested subcommand help incorrectly.'
12
- spec.description = <<-DESC
13
- `ThorNestedSubcommand` is a Ruby gem that provides a workaround for the
14
- Thor gem (https://rubygems.org/gems/thor) bug that displays nested subcommand
15
- help incorrectly. Simply include the `ThorNestedSubcommand` module in your Thor
16
- nested subcommand, and provide a simple class method to return what Thor help
17
- should be displaying, and that's it.
18
- DESC
19
- spec.homepage = 'https://github.com/gangelo/thor_nested_subcommand'
20
- spec.license = 'MIT'
21
- spec.required_ruby_version = '>= 3.0.1'
22
-
23
- # spec.metadata["allowed_push_host"] = "TODO: Set to your gem server 'https://example.com'"
24
-
25
- spec.metadata['homepage_uri'] = spec.homepage
26
- spec.metadata['source_code_uri'] = spec.homepage
27
- spec.metadata['changelog_uri'] = 'https://github.com/gangelo/thor_nested_subcommand/blob/main/CHANGELOG.md'
28
-
29
- # Specify which files should be added to the gem when it is released.
30
- # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
31
- spec.files = Dir.chdir(File.expand_path(__dir__)) do
32
- `git ls-files -z`.split("\x0").reject do |f|
33
- (f == __FILE__) || f.match(%r{\A(?:(?:test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
34
- end
35
- end
36
- spec.bindir = 'exe'
37
- spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
38
- spec.require_paths = ['lib']
39
-
40
- # Uncomment to register a new dependency of your gem
41
- # spec.add_dependency "example-gem", "~> 1.0"
42
-
43
- # For more information and examples about making a new gem, checkout our
44
- # guide at: https://bundler.io/guides/creating_gem.html
45
- spec.metadata['rubygems_mfa_required'] = 'true'
46
- end