human_enum 1.1.2 → 1.2.0

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: 70901ad863143ed0cd282bd80410c8f6d3748ce7d82e049e2b03327866e20903
4
- data.tar.gz: 9d8b0ca4db806f2dad9a512492083cfcb59e105ae715b6aa2b4df81466da9e2d
3
+ metadata.gz: 13fc8000dbb0e7915aaafaef68bff0c4370193ce44467101eb9372a8b6b9ba32
4
+ data.tar.gz: d8d2637077f39414b098d24e4d0b844a21d89bd17e2937628d511fb5fcd30300
5
5
  SHA512:
6
- metadata.gz: 690fa84f0b397789f0e93e2ef6fa532da7c96423d1b5afa8713043829ce5c9c6f688c296036e37d63a8587857f885a564f7c1f97cd0f9e03b6137ffe0823940f
7
- data.tar.gz: 9cbc3d72af9091c9598b796e1f4e78e2baa81d5a6f2eb0b01ceeebdd9ed79db0e132e6d3beb4a04a8983b2dec5e2544e295e23611b0329c6e6695a645454c329
6
+ metadata.gz: 95415b300ad9ecb55edaff86c6070933ac55d7db23a0c5d138adf9161802804f245f846da8ed4cd343c7575e643a5d7f351efb9d55f8df5e67ba22ab8ebd3a75
7
+ data.tar.gz: 157657b9baff5717965021ce6c6a762b341ac16ca074a25635e36df40adcc2f369a7a1978fc1ff2907880e5351a58e08f1456f3a737b3d65749ad31d7fe88841
@@ -9,7 +9,7 @@ updates:
9
9
  directory: "/" # Location of package manifests
10
10
  schedule:
11
11
  interval: "weekly"
12
-
12
+
13
13
  ignore:
14
- - dependency-name: "*"
14
+ - dependency-name: "*"
15
15
  update-types: ["version-update:semver-major"]
@@ -16,6 +16,9 @@ jobs:
16
16
 
17
17
  runs-on: ubuntu-latest
18
18
 
19
+ env:
20
+ QLTY_COVERAGE_TOKEN: ${{ secrets.QLTY_COVERAGE_TOKEN }}
21
+
19
22
  steps:
20
23
  - uses: actions/checkout@v4
21
24
 
@@ -24,12 +27,14 @@ jobs:
24
27
  rubygems: latest
25
28
  bundler-cache: true
26
29
 
27
- - name: Run tests and upload code coverage to Code Climate
28
- uses: paambaati/codeclimate-action@v6
29
- env:
30
- CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
30
+ - name: Run specs
31
+ run: bin/rspec --format json --out spec/reports/rspec.json
32
+
33
+ - uses: qltysh/qlty-action/coverage@main
34
+ if: ${{ env.QLTY_COVERAGE_TOKEN != '' }}
31
35
  with:
32
- coverageCommand: bin/rspec --format json --out spec/reports/rspec.json
36
+ coverage-token: ${{ secrets.QLTY_COVERAGE_TOKEN }}
37
+ files: coverage/coverage.json
33
38
 
34
39
  - name: Upload test results
35
40
  uses: actions/upload-artifact@v4
@@ -45,9 +50,13 @@ jobs:
45
50
  runs-on: ubuntu-latest
46
51
 
47
52
  strategy:
53
+ fail-fast: false
48
54
  matrix:
49
55
  ruby: ['3.1', '3.2', '3.3']
50
- rails: ['6.1', '7.0', '7.1']
56
+ rails: ['6.1', '7.0', '7.1', '7.2', '8.0']
57
+ exclude:
58
+ - ruby: 3.1
59
+ rails: 8.0
51
60
 
52
61
  env:
53
62
  BUNDLE_LOCKFILE: rails-${{ matrix.rails }}
data/.qlty/qlty.toml ADDED
@@ -0,0 +1,109 @@
1
+ # This file was automatically generated by `qlty init`.
2
+ # You can modify it to suit your needs.
3
+ # We recommend you to commit this file to your repository.
4
+ #
5
+ # This configuration is used by both Qlty CLI and Qlty Cloud.
6
+ #
7
+ # Qlty CLI -- Code quality toolkit for developers
8
+ # Qlty Cloud -- Fully automated Code Health Platform
9
+ #
10
+ # Try Qlty Cloud: https://qlty.sh
11
+ #
12
+ # For a guide to configuration, visit https://qlty.sh/d/config
13
+ # Or for a full reference, visit https://qlty.sh/d/qlty-toml
14
+ config_version = "0"
15
+
16
+ exclude_patterns = [
17
+ "*_min.*",
18
+ "*-min.*",
19
+ "*.min.*",
20
+ "**/*.d.ts",
21
+ "**/.yarn/**",
22
+ "**/bower_components/**",
23
+ "**/build/**",
24
+ "**/cache/**",
25
+ "**/config/**",
26
+ "**/db/**",
27
+ "**/deps/**",
28
+ "**/dist/**",
29
+ "**/extern/**",
30
+ "**/external/**",
31
+ "**/generated/**",
32
+ "**/Godeps/**",
33
+ "**/gradlew/**",
34
+ "**/mvnw/**",
35
+ "**/node_modules/**",
36
+ "**/protos/**",
37
+ "**/seed/**",
38
+ "**/target/**",
39
+ "**/testdata/**",
40
+ "**/vendor/**",
41
+ "**/assets/**",
42
+ "bin/*",
43
+ ]
44
+
45
+ test_patterns = [
46
+ "**/test/**",
47
+ "**/spec/**",
48
+ "**/*.test.*",
49
+ "**/*.spec.*",
50
+ "**/*_test.*",
51
+ "**/*_spec.*",
52
+ "**/test_*.*",
53
+ "**/spec_*.*",
54
+ ]
55
+
56
+ [smells]
57
+ mode = "comment"
58
+
59
+ [smells.boolean_logic]
60
+ threshold = 4
61
+
62
+ [smells.file_complexity]
63
+ threshold = 55
64
+
65
+ [smells.return_statements]
66
+ threshold = 4
67
+
68
+ [smells.nested_control_flow]
69
+ threshold = 4
70
+
71
+ [smells.function_parameters]
72
+ threshold = 4
73
+
74
+ [smells.function_complexity]
75
+ threshold = 5
76
+
77
+ [smells.duplication]
78
+ threshold = 22
79
+
80
+ [[source]]
81
+ name = "default"
82
+ default = true
83
+
84
+ [[plugin]]
85
+ name = "actionlint"
86
+
87
+ [[plugin]]
88
+ name = "markdownlint"
89
+ mode = "disabled"
90
+
91
+ [[plugin]]
92
+ name = "osv-scanner"
93
+
94
+ [[plugin]]
95
+ name = "ripgrep"
96
+ mode = "comment"
97
+
98
+ [[plugin]]
99
+ name = "rubocop"
100
+ version = "1.56.4"
101
+ package_file = "Gemfile"
102
+ package_filters = ["rubocop"]
103
+
104
+ [[plugin]]
105
+ name = "trivy"
106
+ drivers = ["config", "fs-vuln"]
107
+
108
+ [[plugin]]
109
+ name = "trufflehog"
data/CHANGELOG.md CHANGED
@@ -1,16 +1,21 @@
1
1
  # Changelog
2
2
 
3
3
  ## 1.0.0
4
+
4
5
  Updating to Ruby 3.2 and Rails 7
5
6
 
6
7
  ## 0.1.3
8
+
7
9
  No code changes, just changing our CI
8
10
 
9
11
  ## 0.1.2
12
+
10
13
  Adding proper specs and improving the quality of the gem
11
14
 
12
15
  ## 0.1.1
16
+
13
17
  Improvements to the gem (no code changes)
14
18
 
15
19
  ## 0.1.0
20
+
16
21
  First version
data/CODE_OF_CONDUCT.md CHANGED
@@ -55,7 +55,7 @@ further defined and clarified by project maintainers.
55
55
  ## Enforcement
56
56
 
57
57
  Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
- reported by contacting the project team at rafasoaresms@gmail.com. All
58
+ reported by contacting the project team at <rafasoaresms@gmail.com>. All
59
59
  complaints will be reviewed and investigated and will result in a response that
60
60
  is deemed necessary and appropriate to the circumstances. The project team is
61
61
  obligated to maintain confidentiality with regard to the reporter of an incident.
data/Gemfile CHANGED
@@ -10,25 +10,36 @@ return unless Plugin.installed?('bundler-multilock')
10
10
  Plugin.send(:load_plugin, 'bundler-multilock')
11
11
 
12
12
  lockfile do
13
- gem 'activerecord', '~> 7.1'
13
+ gem 'activerecord', '~> 8.0'
14
+ gem 'sqlite3', '~> 2.0'
14
15
  end
15
16
 
16
17
  lockfile 'rails-6.1' do
17
18
  gem 'activerecord', '~> 6.1.0' # rubocop:disable Bundler/DuplicatedGem
19
+ gem 'sqlite3', '~> 1.4' # rubocop:disable Bundler/DuplicatedGem
18
20
  end
19
21
 
20
22
  lockfile 'rails-7.0' do
21
23
  gem 'activerecord', '~> 7.0.0' # rubocop:disable Bundler/DuplicatedGem
24
+ gem 'sqlite3', '~> 1.4' # rubocop:disable Bundler/DuplicatedGem
22
25
  end
23
26
 
24
27
  lockfile 'rails-7.1' do
25
28
  gem 'activerecord', '~> 7.1.0' # rubocop:disable Bundler/DuplicatedGem
29
+ gem 'sqlite3', '~> 2.0' # rubocop:disable Bundler/DuplicatedGem
26
30
  end
27
31
 
28
- gem 'rake', '~> 13.0'
32
+ lockfile 'rails-7.2' do
33
+ gem 'activerecord', '~> 7.2.0' # rubocop:disable Bundler/DuplicatedGem
34
+ gem 'sqlite3', '~> 2.0' # rubocop:disable Bundler/DuplicatedGem
35
+ end
29
36
 
30
- gem 'sqlite3', '~> 1.4'
37
+ lockfile 'rails-8.0' do
38
+ gem 'activerecord', '~> 8.0.0' # rubocop:disable Bundler/DuplicatedGem
39
+ gem 'sqlite3', '~> 2.0' # rubocop:disable Bundler/DuplicatedGem
40
+ end
31
41
 
42
+ gem 'rake', '~> 13.0'
32
43
  gem 'rspec', '~> 3.12'
33
44
 
34
45
  # Should match the version in .codeclimate.yml
data/Gemfile.lock CHANGED
@@ -1,50 +1,56 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- human_enum (1.1.2)
5
- activerecord (>= 6.1, < 8)
4
+ human_enum (1.2.0)
5
+ activerecord (>= 6.1, < 9)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
9
9
  specs:
10
- activemodel (7.1.4.2)
11
- activesupport (= 7.1.4.2)
12
- activerecord (7.1.4.2)
13
- activemodel (= 7.1.4.2)
14
- activesupport (= 7.1.4.2)
10
+ activemodel (8.0.2)
11
+ activesupport (= 8.0.2)
12
+ activerecord (8.0.2)
13
+ activemodel (= 8.0.2)
14
+ activesupport (= 8.0.2)
15
15
  timeout (>= 0.4.0)
16
- activesupport (7.1.4.2)
16
+ activesupport (8.0.2)
17
17
  base64
18
+ benchmark (>= 0.3)
18
19
  bigdecimal
19
- concurrent-ruby (~> 1.0, >= 1.0.2)
20
+ concurrent-ruby (~> 1.0, >= 1.3.1)
20
21
  connection_pool (>= 2.2.5)
21
22
  drb
22
23
  i18n (>= 1.6, < 2)
24
+ logger (>= 1.4.2)
23
25
  minitest (>= 5.1)
24
- mutex_m
25
- tzinfo (~> 2.0)
26
+ securerandom (>= 0.3)
27
+ tzinfo (~> 2.0, >= 2.0.5)
28
+ uri (>= 0.13.1)
26
29
  ast (2.4.2)
27
30
  base64 (0.1.2)
31
+ benchmark (0.4.0)
28
32
  bigdecimal (3.1.8)
29
33
  coderay (1.1.3)
30
34
  concurrent-ruby (1.3.4)
31
35
  connection_pool (2.4.1)
32
- diff-lcs (1.5.1)
36
+ diff-lcs (1.6.0)
33
37
  docile (1.4.1)
34
38
  drb (2.2.1)
35
- ffi (1.17.0-aarch64-linux-gnu)
36
- ffi (1.17.0-arm-linux-gnu)
37
- ffi (1.17.0-arm64-darwin)
38
- ffi (1.17.0-x86-linux-gnu)
39
- ffi (1.17.0-x86_64-darwin)
40
- ffi (1.17.0-x86_64-linux-gnu)
39
+ ffi (1.17.1-aarch64-linux-gnu)
40
+ ffi (1.17.1-arm-linux-gnu)
41
+ ffi (1.17.1-arm64-darwin)
42
+ ffi (1.17.1-x86-linux-gnu)
43
+ ffi (1.17.1-x86_64-darwin)
44
+ ffi (1.17.1-x86_64-linux-gnu)
41
45
  formatador (1.1.0)
42
- guard (2.19.0)
46
+ guard (2.19.1)
43
47
  formatador (>= 0.2.4)
44
48
  listen (>= 2.7, < 4.0)
49
+ logger (~> 1.6)
45
50
  lumberjack (>= 1.0.12, < 2.0)
46
51
  nenv (~> 0.1)
47
52
  notiffany (~> 0.0)
53
+ ostruct (~> 0.6)
48
54
  pry (>= 0.13.0)
49
55
  shellany (~> 0.0)
50
56
  thor (>= 0.18.1)
@@ -58,44 +64,44 @@ GEM
58
64
  rubocop (< 2.0)
59
65
  i18n (1.14.6)
60
66
  concurrent-ruby (~> 1.0)
61
- json (2.7.4)
62
- language_server-protocol (3.17.0.3)
67
+ json (2.10.2)
68
+ language_server-protocol (3.17.0.4)
63
69
  listen (3.9.0)
64
70
  rb-fsevent (~> 0.10, >= 0.10.3)
65
71
  rb-inotify (~> 0.9, >= 0.9.10)
66
- logger (1.6.1)
72
+ logger (1.6.3)
67
73
  lumberjack (1.2.10)
68
74
  method_source (1.1.0)
69
- minitest (5.25.1)
70
- mutex_m (0.2.0)
75
+ minitest (5.25.4)
71
76
  nenv (0.3.0)
72
77
  notiffany (0.1.3)
73
78
  nenv (~> 0.1)
74
79
  shellany (~> 0.0)
80
+ ostruct (0.6.1)
75
81
  parallel (1.26.3)
76
- parser (3.3.5.0)
82
+ parser (3.3.7.1)
77
83
  ast (~> 2.4.1)
78
84
  racc
79
- prism (1.2.0)
80
- pry (0.14.2)
85
+ prism (1.3.0)
86
+ pry (0.15.2)
81
87
  coderay (~> 1.1)
82
88
  method_source (~> 1.0)
83
89
  racc (1.8.1)
84
- rack (3.1.8)
90
+ rack (3.1.12)
85
91
  rainbow (3.1.1)
86
92
  rake (13.2.1)
87
93
  rb-fsevent (0.11.2)
88
94
  rb-inotify (0.11.1)
89
95
  ffi (~> 1.0)
90
- rbs (3.6.1)
96
+ rbs (3.8.1)
91
97
  logger
92
- regexp_parser (2.9.2)
93
- rexml (3.3.9)
98
+ regexp_parser (2.10.0)
99
+ rexml (3.4.1)
94
100
  rspec (3.13.0)
95
101
  rspec-core (~> 3.13.0)
96
102
  rspec-expectations (~> 3.13.0)
97
103
  rspec-mocks (~> 3.13.0)
98
- rspec-core (3.13.2)
104
+ rspec-core (3.13.3)
99
105
  rspec-support (~> 3.13.0)
100
106
  rspec-expectations (3.13.3)
101
107
  diff-lcs (>= 1.2.0, < 2.0)
@@ -103,7 +109,7 @@ GEM
103
109
  rspec-mocks (3.13.2)
104
110
  diff-lcs (>= 1.2.0, < 2.0)
105
111
  rspec-support (~> 3.13.0)
106
- rspec-support (3.13.1)
112
+ rspec-support (3.13.2)
107
113
  rubocop (1.56.4)
108
114
  base64 (~> 0.1.1)
109
115
  json (~> 2.3)
@@ -116,12 +122,12 @@ GEM
116
122
  rubocop-ast (>= 1.28.1, < 2.0)
117
123
  ruby-progressbar (~> 1.7)
118
124
  unicode-display_width (>= 2.4.0, < 3.0)
119
- rubocop-ast (1.32.3)
125
+ rubocop-ast (1.38.1)
120
126
  parser (>= 3.3.1.0)
121
- rubocop-performance (1.22.1)
127
+ rubocop-performance (1.23.1)
122
128
  rubocop (>= 1.48.1, < 2.0)
123
129
  rubocop-ast (>= 1.31.1, < 2.0)
124
- rubocop-rails (2.27.0)
130
+ rubocop-rails (2.29.1)
125
131
  activesupport (>= 4.2.0)
126
132
  rack (>= 1.1)
127
133
  rubocop (>= 1.52.0, < 2.0)
@@ -130,16 +136,17 @@ GEM
130
136
  rubocop (~> 1.0)
131
137
  rubocop-rspec (3.0.0)
132
138
  rubocop (~> 1.40)
133
- ruby-lsp (0.20.1)
139
+ ruby-lsp (0.23.11)
134
140
  language_server-protocol (~> 3.17.0)
135
141
  prism (>= 1.2, < 2.0)
136
142
  rbs (>= 3, < 4)
137
143
  sorbet-runtime (>= 0.5.10782)
138
- ruby-lsp-rails (0.3.21)
139
- ruby-lsp (>= 0.20.0, < 0.21.0)
140
- ruby-lsp-rspec (0.1.17)
141
- ruby-lsp (~> 0.20.1)
144
+ ruby-lsp-rails (0.4.0)
145
+ ruby-lsp (>= 0.23.0, < 0.24.0)
146
+ ruby-lsp-rspec (0.1.22)
147
+ ruby-lsp (~> 0.23.0)
142
148
  ruby-progressbar (1.13.0)
149
+ securerandom (0.4.0)
143
150
  shellany (0.0.1)
144
151
  simplecov (0.22.0)
145
152
  docile (~> 1.1)
@@ -147,18 +154,19 @@ GEM
147
154
  simplecov_json_formatter (~> 0.1)
148
155
  simplecov-html (0.13.1)
149
156
  simplecov_json_formatter (0.1.4)
150
- sorbet-runtime (0.5.11620)
151
- sqlite3 (1.7.3-aarch64-linux)
152
- sqlite3 (1.7.3-arm-linux)
153
- sqlite3 (1.7.3-arm64-darwin)
154
- sqlite3 (1.7.3-x86-linux)
155
- sqlite3 (1.7.3-x86_64-darwin)
156
- sqlite3 (1.7.3-x86_64-linux)
157
+ sorbet-runtime (0.5.11919)
158
+ sqlite3 (2.6.0-aarch64-linux-gnu)
159
+ sqlite3 (2.6.0-arm-linux-gnu)
160
+ sqlite3 (2.6.0-arm64-darwin)
161
+ sqlite3 (2.6.0-x86-linux-gnu)
162
+ sqlite3 (2.6.0-x86_64-darwin)
163
+ sqlite3 (2.6.0-x86_64-linux-gnu)
157
164
  thor (1.3.2)
158
- timeout (0.4.1)
165
+ timeout (0.4.3)
159
166
  tzinfo (2.0.6)
160
167
  concurrent-ruby (~> 1.0)
161
168
  unicode-display_width (2.6.0)
169
+ uri (1.0.3)
162
170
 
163
171
  PLATFORMS
164
172
  aarch64-linux
@@ -169,7 +177,7 @@ PLATFORMS
169
177
  x86_64-linux
170
178
 
171
179
  DEPENDENCIES
172
- activerecord (~> 7.1)
180
+ activerecord (~> 8.0)
173
181
  guard (~> 2.18)
174
182
  guard-rspec (~> 4.7)
175
183
  guard-rubocop (~> 1.5)
@@ -184,7 +192,7 @@ DEPENDENCIES
184
192
  ruby-lsp-rails
185
193
  ruby-lsp-rspec
186
194
  simplecov (~> 0.22.0)
187
- sqlite3 (~> 1.4)
195
+ sqlite3 (~> 2.0)
188
196
 
189
197
  BUNDLED WITH
190
198
  2.5.10
@@ -1,18 +1,18 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- human_enum (1.1.2)
5
- activerecord (>= 6.1, < 8)
4
+ human_enum (1.2.0)
5
+ activerecord (>= 6.1, < 9)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
9
9
  specs:
10
- activemodel (6.1.7.7)
11
- activesupport (= 6.1.7.7)
12
- activerecord (6.1.7.7)
13
- activemodel (= 6.1.7.7)
14
- activesupport (= 6.1.7.7)
15
- activesupport (6.1.7.7)
10
+ activemodel (6.1.7.10)
11
+ activesupport (= 6.1.7.10)
12
+ activerecord (6.1.7.10)
13
+ activemodel (= 6.1.7.10)
14
+ activesupport (= 6.1.7.10)
15
+ activesupport (6.1.7.10)
16
16
  concurrent-ruby (~> 1.0, >= 1.0.2)
17
17
  i18n (>= 1.6, < 2)
18
18
  minitest (>= 5.1)
@@ -22,16 +22,23 @@ GEM
22
22
  base64 (0.1.2)
23
23
  coderay (1.1.3)
24
24
  concurrent-ruby (1.3.4)
25
- diff-lcs (1.5.1)
25
+ diff-lcs (1.6.0)
26
26
  docile (1.4.1)
27
- ffi (1.16.3)
27
+ ffi (1.17.1-aarch64-linux-gnu)
28
+ ffi (1.17.1-arm-linux-gnu)
29
+ ffi (1.17.1-arm64-darwin)
30
+ ffi (1.17.1-x86-linux-gnu)
31
+ ffi (1.17.1-x86_64-darwin)
32
+ ffi (1.17.1-x86_64-linux-gnu)
28
33
  formatador (1.1.0)
29
- guard (2.19.0)
34
+ guard (2.19.1)
30
35
  formatador (>= 0.2.4)
31
36
  listen (>= 2.7, < 4.0)
37
+ logger (~> 1.6)
32
38
  lumberjack (>= 1.0.12, < 2.0)
33
39
  nenv (~> 0.1)
34
40
  notiffany (~> 0.0)
41
+ ostruct (~> 0.6)
35
42
  pry (>= 0.13.0)
36
43
  shellany (~> 0.0)
37
44
  thor (>= 0.18.1)
@@ -45,43 +52,44 @@ GEM
45
52
  rubocop (< 2.0)
46
53
  i18n (1.14.6)
47
54
  concurrent-ruby (~> 1.0)
48
- json (2.7.4)
49
- language_server-protocol (3.17.0.3)
55
+ json (2.10.2)
56
+ language_server-protocol (3.17.0.4)
50
57
  listen (3.9.0)
51
58
  rb-fsevent (~> 0.10, >= 0.10.3)
52
59
  rb-inotify (~> 0.9, >= 0.9.10)
53
- logger (1.6.1)
60
+ logger (1.6.3)
54
61
  lumberjack (1.2.10)
55
62
  method_source (1.1.0)
56
- minitest (5.25.1)
63
+ minitest (5.25.4)
57
64
  nenv (0.3.0)
58
65
  notiffany (0.1.3)
59
66
  nenv (~> 0.1)
60
67
  shellany (~> 0.0)
68
+ ostruct (0.6.1)
61
69
  parallel (1.26.3)
62
- parser (3.3.5.0)
70
+ parser (3.3.7.1)
63
71
  ast (~> 2.4.1)
64
72
  racc
65
- prism (1.2.0)
66
- pry (0.14.2)
73
+ prism (1.3.0)
74
+ pry (0.15.2)
67
75
  coderay (~> 1.1)
68
76
  method_source (~> 1.0)
69
77
  racc (1.8.1)
70
- rack (3.1.8)
78
+ rack (3.1.12)
71
79
  rainbow (3.1.1)
72
80
  rake (13.2.1)
73
81
  rb-fsevent (0.11.2)
74
82
  rb-inotify (0.11.1)
75
83
  ffi (~> 1.0)
76
- rbs (3.6.1)
84
+ rbs (3.8.1)
77
85
  logger
78
- regexp_parser (2.9.2)
79
- rexml (3.3.9)
86
+ regexp_parser (2.10.0)
87
+ rexml (3.4.1)
80
88
  rspec (3.13.0)
81
89
  rspec-core (~> 3.13.0)
82
90
  rspec-expectations (~> 3.13.0)
83
91
  rspec-mocks (~> 3.13.0)
84
- rspec-core (3.13.2)
92
+ rspec-core (3.13.3)
85
93
  rspec-support (~> 3.13.0)
86
94
  rspec-expectations (3.13.3)
87
95
  diff-lcs (>= 1.2.0, < 2.0)
@@ -89,7 +97,7 @@ GEM
89
97
  rspec-mocks (3.13.2)
90
98
  diff-lcs (>= 1.2.0, < 2.0)
91
99
  rspec-support (~> 3.13.0)
92
- rspec-support (3.13.1)
100
+ rspec-support (3.13.2)
93
101
  rubocop (1.56.4)
94
102
  base64 (~> 0.1.1)
95
103
  json (~> 2.3)
@@ -102,12 +110,12 @@ GEM
102
110
  rubocop-ast (>= 1.28.1, < 2.0)
103
111
  ruby-progressbar (~> 1.7)
104
112
  unicode-display_width (>= 2.4.0, < 3.0)
105
- rubocop-ast (1.32.3)
113
+ rubocop-ast (1.38.1)
106
114
  parser (>= 3.3.1.0)
107
- rubocop-performance (1.22.1)
115
+ rubocop-performance (1.23.1)
108
116
  rubocop (>= 1.48.1, < 2.0)
109
117
  rubocop-ast (>= 1.31.1, < 2.0)
110
- rubocop-rails (2.27.0)
118
+ rubocop-rails (2.29.1)
111
119
  activesupport (>= 4.2.0)
112
120
  rack (>= 1.1)
113
121
  rubocop (>= 1.52.0, < 2.0)
@@ -116,15 +124,15 @@ GEM
116
124
  rubocop (~> 1.0)
117
125
  rubocop-rspec (3.0.0)
118
126
  rubocop (~> 1.40)
119
- ruby-lsp (0.20.1)
127
+ ruby-lsp (0.23.11)
120
128
  language_server-protocol (~> 3.17.0)
121
129
  prism (>= 1.2, < 2.0)
122
130
  rbs (>= 3, < 4)
123
131
  sorbet-runtime (>= 0.5.10782)
124
- ruby-lsp-rails (0.3.21)
125
- ruby-lsp (>= 0.20.0, < 0.21.0)
126
- ruby-lsp-rspec (0.1.17)
127
- ruby-lsp (~> 0.20.1)
132
+ ruby-lsp-rails (0.4.0)
133
+ ruby-lsp (>= 0.23.0, < 0.24.0)
134
+ ruby-lsp-rspec (0.1.22)
135
+ ruby-lsp (~> 0.23.0)
128
136
  ruby-progressbar (1.13.0)
129
137
  shellany (0.0.1)
130
138
  simplecov (0.22.0)
@@ -133,7 +141,7 @@ GEM
133
141
  simplecov_json_formatter (~> 0.1)
134
142
  simplecov-html (0.13.1)
135
143
  simplecov_json_formatter (0.1.4)
136
- sorbet-runtime (0.5.11620)
144
+ sorbet-runtime (0.5.11919)
137
145
  sqlite3 (1.7.3-aarch64-linux)
138
146
  sqlite3 (1.7.3-arm-linux)
139
147
  sqlite3 (1.7.3-arm64-darwin)
@@ -144,7 +152,7 @@ GEM
144
152
  tzinfo (2.0.6)
145
153
  concurrent-ruby (~> 1.0)
146
154
  unicode-display_width (2.6.0)
147
- zeitwerk (2.6.14)
155
+ zeitwerk (2.6.18)
148
156
 
149
157
  PLATFORMS
150
158
  aarch64-linux