thor_nested_subcommand 1.0.3 → 1.0.4

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: 7eb5fb239271ac0a3d7b43371d2f953e1ddb738a749197460ea70ff31c9bd057
4
- data.tar.gz: 9c8534a9c2fa0030fa7448e01772ab2949fbbe142d22e21f44aeaefc66d9016e
3
+ metadata.gz: dc68528afc77ef62c89101f0cd0ad21b2fe4e21b16fa40b86b0b02c43a26ef68
4
+ data.tar.gz: 27986cb7aa84b3ac21a08101b5ec7275803aa45fff185aa386669c1b906db438
5
5
  SHA512:
6
- metadata.gz: 6a738e53fb8617cde21f667d5f8681f8d2c2155920dcca35dd0cf8f3ddb1c3d203d93cd8cd8840ad1e3f86abc3b4cab40049ddbdac5ecd648079cb857226b4f7
7
- data.tar.gz: 7cd4ff30a410fbe613efb3fb433e09d9542a5b0c277534315d5bf0647be08e6bf47f1735ccec886d79658dd0b811219ec50963385edef46d627634ad65d26ca3
6
+ metadata.gz: b45c1865acc51a2479cb1e715e9d503f659f33f4698d0857e75a7c0ce8538e5e97fa1c5b93a9e5a7d8ff6139730abdb35785286a80903f26a742f6cc54801ce1
7
+ data.tar.gz: e0ef3abc8ad945a90534b980f9fe28dd04ef897f090d2f77345892e06d77e7f472234aca125022e5ee2a4fecc386817257fe62a1df3cd0d9b9d41bea9f45f6eb
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## [1.0.4] - 2023-12-02
2
+
3
+ Changes
4
+
5
+ - Update rubocop version.
6
+
1
7
  ## [1.0.3] - 2023-12-02
2
8
 
3
9
  Changes
data/Gemfile CHANGED
@@ -7,7 +7,7 @@ gemspec
7
7
 
8
8
  gem 'rake', '~> 13.0'
9
9
  gem 'rspec', '~> 3.12'
10
- gem 'rubocop', '~> 1.42.0'
10
+ gem 'rubocop', '~> 1.58.0'
11
11
 
12
12
  gem 'pry-byebug', '~> 3.9'
13
13
  gem 'reek', '~> 6.1'
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- thor_nested_subcommand (1.0.3)
4
+ thor_nested_subcommand (1.0.4)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -13,6 +13,7 @@ GEM
13
13
  docile (1.4.0)
14
14
  json (2.7.0)
15
15
  kwalify (0.7.2)
16
+ language_server-protocol (3.17.0.3)
16
17
  method_source (1.0.0)
17
18
  parallel (1.23.0)
18
19
  parser (3.2.2.4)
@@ -46,16 +47,17 @@ GEM
46
47
  diff-lcs (>= 1.2.0, < 2.0)
47
48
  rspec-support (~> 3.12.0)
48
49
  rspec-support (3.12.1)
49
- rubocop (1.42.0)
50
+ rubocop (1.58.0)
50
51
  json (~> 2.3)
52
+ language_server-protocol (>= 3.17.0)
51
53
  parallel (~> 1.10)
52
- parser (>= 3.1.2.1)
54
+ parser (>= 3.2.2.4)
53
55
  rainbow (>= 2.2.2, < 4.0)
54
56
  regexp_parser (>= 1.8, < 3.0)
55
57
  rexml (>= 3.2.5, < 4.0)
56
- rubocop-ast (>= 1.24.1, < 2.0)
58
+ rubocop-ast (>= 1.30.0, < 2.0)
57
59
  ruby-progressbar (~> 1.7)
58
- unicode-display_width (>= 1.4.0, < 3.0)
60
+ unicode-display_width (>= 2.4.0, < 3.0)
59
61
  rubocop-ast (1.30.0)
60
62
  parser (>= 3.2.1.0)
61
63
  ruby-progressbar (1.13.0)
@@ -78,7 +80,7 @@ DEPENDENCIES
78
80
  rake (~> 13.0)
79
81
  reek (~> 6.1)
80
82
  rspec (~> 3.12)
81
- rubocop (~> 1.42.0)
83
+ rubocop (~> 1.58.0)
82
84
  simplecov (~> 0.22.0)
83
85
  thor (~> 1.2)
84
86
  thor_nested_subcommand!
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ThorNestedSubcommand
4
- VERSION = '1.0.3'
4
+ VERSION = '1.0.4'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: thor_nested_subcommand
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.3
4
+ version: 1.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gene M. Angelo, Jr.