Skip to content

Commit 46516b7

Browse files
committed
bundle update
Use rubocop:disable-next instead of a disable/enable pair around a single statement.
1 parent d2724d8 commit 46516b7

10 files changed

Lines changed: 43 additions & 41 deletions

File tree

Gemfile.lock

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,8 @@ GEM
9494
diff-lcs (>= 1.2.0, < 2.0)
9595
rspec-support (~> 3.13.0)
9696
rspec-support (3.13.7)
97-
rubocop (1.89.0)
98-
json (~> 2.3)
97+
rubocop (1.90.0)
98+
json (>= 2.3)
9999
language_server-protocol (~> 3.17.0.2)
100100
lint_roller (~> 1.1.0)
101101
parallel (>= 1.10)
@@ -112,9 +112,9 @@ GEM
112112
lint_roller (~> 1.1)
113113
rubocop (>= 1.75.0, < 2.0)
114114
rubocop-ast (>= 1.38.0, < 2.0)
115-
rubocop-performance (1.26.1)
115+
rubocop-performance (1.27.0)
116116
lint_roller (~> 1.1)
117-
rubocop (>= 1.75.0, < 2.0)
117+
rubocop (>= 1.89.0, < 2.0)
118118
rubocop-ast (>= 1.47.1, < 2.0)
119119
rubocop-rake (0.7.1)
120120
lint_roller (~> 1.1)
@@ -126,7 +126,7 @@ GEM
126126
ruby-progressbar (1.13.0)
127127
securerandom (0.4.1)
128128
simpleidn (0.2.3)
129-
sorbet-runtime (0.6.13439)
129+
sorbet-runtime (0.6.13455)
130130
steep (2.0.0)
131131
concurrent-ruby (>= 1.1.10)
132132
csv (>= 3.0.9)

lib/simplecov/formatter/html_formatter/viewer_data_validator.rb

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ class HTMLFormatter
99
# dereferences without defensive fallbacks. One check per section
1010
# the viewer reads; the module's length tracks the document's
1111
# surface, not an accumulation of concerns.
12-
# rubocop:disable Metrics/ModuleLength
12+
# rubocop:disable-next Metrics/ModuleLength
1313
module ViewerDataValidator
1414
META_STRINGS = %w[simplecov_version command_name project_name timestamp].freeze
1515
COVERAGE_FLAGS = {
@@ -168,7 +168,6 @@ def validate_boolean!(meta, key)
168168
end
169169
end
170170
end
171-
# rubocop:enable Metrics/ModuleLength
172171
end
173172
end
174173
end

lib/simplecov/production.rb

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ module SimpleCov
2525
# See the file-top comment. One cohesive runtime state machine; kept
2626
# in one class for the same reason a state machine is not split
2727
# across files by size alone.
28-
# rubocop:disable Metrics/ModuleLength, Metrics/ClassLength
28+
# rubocop:disable-next Metrics/ModuleLength, Metrics/ClassLength
2929
module Production
3030
class << self
3131
# Begin measuring. Returns true when measurement started, false —
@@ -296,7 +296,6 @@ def install_at_exit
296296
end
297297
end
298298
end
299-
# rubocop:enable Metrics/ModuleLength, Metrics/ClassLength
300299
end
301300

302301
require_relative "production/file_sink"

spec/command_guesser_spec.rb

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -261,13 +261,12 @@ def with_frameworks(list)
261261

262262
# stub_const addresses a constant by name, and this one belongs to
263263
# an anonymous singleton class, so there is no name to give it.
264-
# rubocop:disable RSpec/RemoveConst
264+
# rubocop:disable-next RSpec/RemoveConst
265265
def swap_frameworks(singleton, list)
266266
singleton.send(:remove_const, :DEFINED_CONSTANT_FRAMEWORKS)
267267
singleton.const_set(:DEFINED_CONSTANT_FRAMEWORKS, list)
268268
singleton.send(:private_constant, :DEFINED_CONSTANT_FRAMEWORKS)
269269
end
270-
# rubocop:enable RSpec/RemoveConst
271270

272271
it "names the first framework whose constant is there" do
273272
guesser.original_run_command = "/some/path/unremarkable.rb"

spec/configuration_spec.rb

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2682,22 +2682,20 @@ def evaluate(target)
26822682
# base is the configuration source, not this spec. It must be a
26832683
# file that exists: JRuby resolves the base through realpath.
26842684
source_path = File.join(SimpleCov.root, "lib/simplecov.rb")
2685-
# rubocop:disable Style/EvalWithLocation
2685+
# rubocop:disable-next Style/EvalWithLocation
26862686
configuration = eval(<<~RUBY, binding, source_path, 1)
26872687
proc { require_relative "simplecov/version" }
26882688
RUBY
2689-
# rubocop:enable Style/EvalWithLocation
26902689

26912690
expect { config.configure(&configuration) }.not_to raise_error
26922691
end
26932692

26942693
it "keeps configuration exceptions anchored to their source" do
26952694
source_path = File.join(SimpleCov.root, "lib/configuration_probe.rb")
2696-
# rubocop:disable Style/EvalWithLocation
2695+
# rubocop:disable-next Style/EvalWithLocation
26972696
configuration = eval(<<~RUBY, binding, source_path, 37)
26982697
proc { raise "from config" }
26992698
RUBY
2700-
# rubocop:enable Style/EvalWithLocation
27012699

27022700
expect { config.configure(&configuration) }.to raise_error("from config") do |error|
27032701
expect(error.backtrace.first).to start_with("#{source_path}:37:")

spec/fixtures/nocov_complex.rb

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# So much skippping
2-
# rubocop:disable Metrics/MethodLength, Lint/Void
2+
# rubocop:disable-next Metrics/MethodLength, Lint/Void
33
module NoCovComplex
44
def self.call(arg)
55
# :nocov:
@@ -24,4 +24,3 @@ def self.call(arg)
2424
end
2525
end
2626
end
27-
# rubocop:enable Metrics/MethodLength, Lint/Void

spec/parallel_adapters_spec.rb

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# adapter, so the around block addresses the registry by its full
99
# constant name instead of relying on `described_class` (which would
1010
# call `reset_current!` on whichever adapter is in scope and explode).
11-
# rubocop:disable RSpec/DescribedClass
11+
# rubocop:disable-next RSpec/DescribedClass
1212
around do |example|
1313
prev_adapters = SimpleCov::ParallelAdapters.instance_variable_get(:@adapters)&.dup
1414
prev_test_env_number = ENV.fetch("TEST_ENV_NUMBER", nil)
@@ -25,7 +25,6 @@
2525
ENV["PARALLEL_TEST_GROUPS"] = prev_parallel_test_groups
2626
ENV["PARALLEL_PID_FILE"] = prev_parallel_pid_file
2727
end
28-
# rubocop:enable RSpec/DescribedClass
2928

3029
describe ".adapters" do
3130
it "ships ParallelTestsAdapter first and GenericAdapter second" do

test_projects/rails/minitest_rails/Gemfile.lock

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ GEM
8181
tzinfo (~> 2.0, >= 2.0.5)
8282
uri (>= 0.13.1)
8383
base64 (0.3.0)
84+
benchmark (0.5.0)
8485
bigdecimal (4.1.2)
8586
builder (3.3.0)
8687
concurrent-ruby (1.3.8)
@@ -122,7 +123,7 @@ GEM
122123
net-protocol
123124
net-pop (0.1.2)
124125
net-protocol
125-
net-protocol (0.2.2)
126+
net-protocol (0.3.0)
126127
timeout
127128
net-smtp (0.5.1)
128129
net-protocol
@@ -148,7 +149,7 @@ GEM
148149
prettyprint (0.2.0)
149150
prism (1.9.0)
150151
racc (1.8.1)
151-
rack (3.2.6)
152+
rack (3.2.7)
152153
rack-session (2.1.2)
153154
base64 (>= 0.1.0)
154155
rack (>= 3.0.0)
@@ -187,7 +188,7 @@ GEM
187188
tsort (>= 0.2)
188189
zeitwerk (~> 2.6)
189190
rake (13.4.2)
190-
rbs (4.1.3)
191+
rbs (4.2.0)
191192
logger
192193
prism (>= 1.6.0)
193194
tsort
@@ -223,6 +224,7 @@ PLATFORMS
223224
x86_64-linux-musl
224225

225226
DEPENDENCIES
227+
benchmark
226228
bigdecimal
227229
drb
228230
logger
@@ -244,6 +246,7 @@ CHECKSUMS
244246
activestorage (8.1.3.1) sha256=f555254f387b1cffa499d2fd3115d12635eadc5b15206a8534316a67036163ef
245247
activesupport (8.1.3.1) sha256=85458765f25ea48b9019c46b6bb3fa5683197bf4280d9f06710a6e8d7a831376
246248
base64 (0.3.0) sha256=27337aeabad6ffae05c265c450490628ef3ebd4b67be58257393227588f5a97b
249+
benchmark (0.5.0) sha256=465df122341aedcb81a2a24b4d3bd19b6c67c1530713fd533f3ff034e419236c
247250
bigdecimal (4.1.2) sha256=53d217666027eab4280346fba98e7d5b66baaae1b9c3c1c0ffe89d48188a3fbd
248251
builder (3.3.0) sha256=497918d2f9dca528fdca4b88d84e4ef4387256d984b8154e9d5d3fe5a9c8835f
249252
bundler (4.0.16) sha256=d6ca5dd440c24f9abce9844cf44cc8e18c6a553de65a47efb4544137af92c47d
@@ -268,7 +271,7 @@ CHECKSUMS
268271
mutex_m (0.3.0) sha256=cfcb04ac16b69c4813777022fdceda24e9f798e48092a2b817eb4c0a782b0751
269272
net-imap (0.6.6) sha256=96aa4ee50df3060203e649efc341f53480b791d49e150f2fdebf68beb141a8df
270273
net-pop (0.1.2) sha256=848b4e982013c15b2f0382792268763b748cce91c9e91e36b0f27ed26420dff3
271-
net-protocol (0.2.2) sha256=aa73e0cba6a125369de9837b8d8ef82a61849360eba0521900e2c3713aa162a8
274+
net-protocol (0.3.0) sha256=ba310c3d4f1cad46bb1ab20336b06669b1ff8f7c568d9cb9342b32a718547472
272275
net-smtp (0.5.1) sha256=ed96a0af63c524fceb4b29b0d352195c30d82dd916a42f03c62a3a70e5b70736
273276
nio4r (2.7.5) sha256=6c90168e48fb5f8e768419c93abb94ba2b892a1d0602cb06eef16d8b7df1dca1
274277
nokogiri (1.19.4-aarch64-linux-gnu) sha256=1269fb644a6de405057a53dd5c762b1209b43ca7424f839454d3dbc677c31a8f
@@ -283,7 +286,7 @@ CHECKSUMS
283286
prettyprint (0.2.0) sha256=2bc9e15581a94742064a3cc8b0fb9d45aae3d03a1baa6ef80922627a0766f193
284287
prism (1.9.0) sha256=7b530c6a9f92c24300014919c9dcbc055bf4cdf51ec30aed099b06cd6674ef85
285288
racc (1.8.1) sha256=4a7f6929691dbec8b5209a0b373bc2614882b55fc5d2e447a21aaa691303d62f
286-
rack (3.2.6) sha256=5ed78e1f73b2e25679bec7d45ee2d4483cc4146eb1be0264fc4d94cb5ef212c2
289+
rack (3.2.7) sha256=93e13e1c24f93556671d85d2d79fa228c3485815c50d7e2f265b5330c6528fb7
287290
rack-session (2.1.2) sha256=595434f8c0c3473ae7d7ac56ecda6cc6dfd9d37c0b2b5255330aa1576967ffe8
288291
rack-test (2.2.0) sha256=005a36692c306ac0b4a9350355ee080fd09ddef1148a5f8b2ac636c720f5c463
289292
rackup (2.3.1) sha256=6c79c26753778e90983761d677a48937ee3192b3ffef6bc963c0950f94688868
@@ -292,7 +295,7 @@ CHECKSUMS
292295
rails-html-sanitizer (1.7.1) sha256=e797a7c9b01e567307e317c576b49ab4168017e63eea4dba9ce3cb587e2f22c2
293296
railties (8.1.3.1) sha256=2388a232579a00cefea4487de66c8553c3408c1300abdc6cf1799d86ffb04487
294297
rake (13.4.2) sha256=cb825b2bd5f1f8e91ca37bddb4b9aaf345551b4731da62949be002fa89283701
295-
rbs (4.1.3) sha256=0c4474a9751cdc14364bfad0b3e53678323bbdc2c31683b0445932867dbab8c4
298+
rbs (4.2.0) sha256=51f7b886dcc05bc09e10b901daa6a81829f6adc03101d6ca9ea4aac6103e0674
296299
rdoc (8.0.0) sha256=03bf8c08a9639658855a0cfd77c0abca8325c227693f7f33f82957811348c469
297300
reline (0.7.0) sha256=5b012d8e55dbf9d450f12bde2cf7d15ff546ae80b3f8f3b30e570d431815583d
298301
securerandom (0.4.1) sha256=cc5193d414a4341b6e225f0cb4446aceca8e50d5e1888743fac16987638ea0b1

test_projects/rails/rspec_rails/Gemfile.lock

Lines changed: 15 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ GEM
8383
addressable (2.9.0)
8484
public_suffix (>= 2.0.2, < 8.0)
8585
base64 (0.3.0)
86+
benchmark (0.5.0)
8687
bigdecimal (4.1.2)
8788
bindex (0.8.1)
8889
bootsnap (1.25.0)
@@ -109,14 +110,14 @@ GEM
109110
erubi (1.13.1)
110111
globalid (1.4.0)
111112
activesupport (>= 6.1)
112-
haml (7.4.1)
113+
haml (7.5.0)
113114
prism (>= 1.1.0)
114115
temple (>= 0.8.2)
115116
thor
116117
tilt
117118
i18n (1.15.2)
118119
concurrent-ruby (~> 1.0)
119-
io-console (0.9.0)
120+
io-console (0.9.2)
120121
irb (1.18.0)
121122
pp (>= 0.6.0)
122123
prism (>= 1.3.0)
@@ -149,7 +150,7 @@ GEM
149150
net-protocol
150151
net-pop (0.1.2)
151152
net-protocol
152-
net-protocol (0.2.2)
153+
net-protocol (0.3.0)
153154
timeout
154155
net-smtp (0.5.1)
155156
net-protocol
@@ -164,7 +165,7 @@ GEM
164165
puma (8.0.2)
165166
nio4r (~> 2.0)
166167
racc (1.8.1)
167-
rack (3.2.6)
168+
rack (3.2.7)
168169
rack-session (2.1.2)
169170
base64 (>= 0.1.0)
170171
rack (>= 3.0.0)
@@ -203,7 +204,7 @@ GEM
203204
tsort (>= 0.2)
204205
zeitwerk (~> 2.6)
205206
rake (13.4.2)
206-
rbs (4.1.2)
207+
rbs (4.2.0)
207208
logger
208209
prism (>= 1.6.0)
209210
tsort
@@ -237,7 +238,7 @@ GEM
237238
temple (~> 0.10.0)
238239
tilt (>= 2.1.0)
239240
spring (4.7.0)
240-
sqlite3 (2.9.5-arm64-darwin)
241+
sqlite3 (2.9.6-arm64-darwin)
241242
temple (0.10.7)
242243
thor (1.5.0)
243244
tilt (2.9.0)
@@ -263,6 +264,7 @@ PLATFORMS
263264
arm64-darwin
264265

265266
DEPENDENCIES
267+
benchmark
266268
bigdecimal
267269
bootsnap (>= 1.4.4)
268270
byebug
@@ -297,6 +299,7 @@ CHECKSUMS
297299
activesupport (8.1.3.1) sha256=85458765f25ea48b9019c46b6bb3fa5683197bf4280d9f06710a6e8d7a831376
298300
addressable (2.9.0) sha256=7fdf6ac3660f7f4e867a0838be3f6cf722ace541dd97767fa42bc6cfa980c7af
299301
base64 (0.3.0) sha256=27337aeabad6ffae05c265c450490628ef3ebd4b67be58257393227588f5a97b
302+
benchmark (0.5.0) sha256=465df122341aedcb81a2a24b4d3bd19b6c67c1530713fd533f3ff034e419236c
300303
bigdecimal (4.1.2) sha256=53d217666027eab4280346fba98e7d5b66baaae1b9c3c1c0ffe89d48188a3fbd
301304
bindex (0.8.1) sha256=7b1ecc9dc539ed8bccfc8cb4d2732046227b09d6f37582ff12e50a5047ceb17e
302305
bootsnap (1.25.0) sha256=41059e7d0f9cb4023a33465d095f64b913fc9d1b808d6524c307da945fbcffcf
@@ -313,9 +316,9 @@ CHECKSUMS
313316
erb (6.0.7) sha256=c5ca6dc25b0ef974a44dc8f59fe847577122483b1968a38dec305c60bf91ee92
314317
erubi (1.13.1) sha256=a082103b0885dbc5ecf1172fede897f9ebdb745a4b97a5e8dc63953db1ee4ad9
315318
globalid (1.4.0) sha256=037f12fbf1d9d7a014d501c2d5c77356fd4ddd96d7a7991d6700bba96706f427
316-
haml (7.4.1) sha256=e5d09bfcf91c0c7e49e564385adb9aab0a91bc73767736eb1acbdb97eaf21754
319+
haml (7.5.0) sha256=f84519100c81ee1c3ab55faf9bafe0d9dfbdb19cf75b204897025a719c92cd6e
317320
i18n (1.15.2) sha256=00f9eb62412fe593b2a65a97daa75300d37abb8f7202ec748e94b6d46a9dd1b5
318-
io-console (0.9.0) sha256=b8946037a2e385580665c31aa593c785923fe900c694d86da011fd48e51e3868
321+
io-console (0.9.2) sha256=efa74f891dd03c0939a931dfc6e74c2813d904763d456ea9762b0525e748db08
319322
irb (1.18.0) sha256=de9454a0703a54704b9811a5ef31a60c86949fbf4013fcf244fabc7c775248e3
320323
jbuilder (2.15.1) sha256=2430bec28fb0cebacb5875b1009cf9d8bc3c303ccb810c4c8b062a4b51457637
321324
json (2.21.2) sha256=1f1d3b7cf2b3ba1a69beca0bb6db13d5438b80bff3cd54cdaaa620b9b07c1c6a
@@ -330,7 +333,7 @@ CHECKSUMS
330333
mutex_m (0.3.0) sha256=cfcb04ac16b69c4813777022fdceda24e9f798e48092a2b817eb4c0a782b0751
331334
net-imap (0.6.6) sha256=96aa4ee50df3060203e649efc341f53480b791d49e150f2fdebf68beb141a8df
332335
net-pop (0.1.2) sha256=848b4e982013c15b2f0382792268763b748cce91c9e91e36b0f27ed26420dff3
333-
net-protocol (0.2.2) sha256=aa73e0cba6a125369de9837b8d8ef82a61849360eba0521900e2c3713aa162a8
336+
net-protocol (0.3.0) sha256=ba310c3d4f1cad46bb1ab20336b06669b1ff8f7c568d9cb9342b32a718547472
334337
net-smtp (0.5.1) sha256=ed96a0af63c524fceb4b29b0d352195c30d82dd916a42f03c62a3a70e5b70736
335338
nio4r (2.7.5) sha256=6c90168e48fb5f8e768419c93abb94ba2b892a1d0602cb06eef16d8b7df1dca1
336339
nokogiri (1.19.4-arm64-darwin) sha256=a46db9853286e6597b36ebc6953817d15acf3a299583eb3f89fdc6f91dd63527
@@ -340,7 +343,7 @@ CHECKSUMS
340343
public_suffix (7.0.5) sha256=1a8bb08f1bbea19228d3bed6e5ed908d1cb4f7c2726d18bd9cadf60bc676f623
341344
puma (8.0.2) sha256=c8ed871dfbbe66448ea9ffd46692342d9804d4071522b52b5331b7b6e7b686fb
342345
racc (1.8.1) sha256=4a7f6929691dbec8b5209a0b373bc2614882b55fc5d2e447a21aaa691303d62f
343-
rack (3.2.6) sha256=5ed78e1f73b2e25679bec7d45ee2d4483cc4146eb1be0264fc4d94cb5ef212c2
346+
rack (3.2.7) sha256=93e13e1c24f93556671d85d2d79fa228c3485815c50d7e2f265b5330c6528fb7
344347
rack-session (2.1.2) sha256=595434f8c0c3473ae7d7ac56ecda6cc6dfd9d37c0b2b5255330aa1576967ffe8
345348
rack-test (2.2.0) sha256=005a36692c306ac0b4a9350355ee080fd09ddef1148a5f8b2ac636c720f5c463
346349
rackup (2.3.1) sha256=6c79c26753778e90983761d677a48937ee3192b3ffef6bc963c0950f94688868
@@ -349,7 +352,7 @@ CHECKSUMS
349352
rails-html-sanitizer (1.7.1) sha256=e797a7c9b01e567307e317c576b49ab4168017e63eea4dba9ce3cb587e2f22c2
350353
railties (8.1.3.1) sha256=2388a232579a00cefea4487de66c8553c3408c1300abdc6cf1799d86ffb04487
351354
rake (13.4.2) sha256=cb825b2bd5f1f8e91ca37bddb4b9aaf345551b4731da62949be002fa89283701
352-
rbs (4.1.2) sha256=050eb1d8b508f1233bed929c0f2c7052302f7adf295230d9cb314e9024078f48
355+
rbs (4.2.0) sha256=51f7b886dcc05bc09e10b901daa6a81829f6adc03101d6ca9ea4aac6103e0674
353356
rdoc (8.0.0) sha256=03bf8c08a9639658855a0cfd77c0abca8325c227693f7f33f82957811348c469
354357
regexp_parser (2.12.0) sha256=35a916a1d63190ab5c9009457136ae5f3c0c7512d60291d0d1378ba18ce08ebb
355358
reline (0.7.0) sha256=5b012d8e55dbf9d450f12bde2cf7d15ff546ae80b3f8f3b30e570d431815583d
@@ -362,7 +365,7 @@ CHECKSUMS
362365
simplecov (1.1.1)
363366
slim (5.2.2) sha256=d1b5a575fcfa904a5eb66ec0a8f48a2363c7b9c57d50debb42dbab31524ef5e3
364367
spring (4.7.0) sha256=f81bf6d41f05518ed5d0128ce5c75fb6dd9c6153f158129c8b85c4461ca0b72c
365-
sqlite3 (2.9.5-arm64-darwin) sha256=d0cf444a70fc9395d513cfbcc1e6719e224aa645314e3824cb0474c721425aa2
368+
sqlite3 (2.9.6-arm64-darwin) sha256=849b5d7f795e60fe25076d62c72dd722beb45b3850b516ad978d60ee848ec15b
366369
temple (0.10.7) sha256=369fe560adb6534674ce232899c2232df614bcb29c5359b05efedff7a57ed9c0
367370
thor (1.5.0) sha256=e3a9e55fe857e44859ce104a84675ab6e8cd59c650a49106a05f55f136425e73
368371
tilt (2.9.0) sha256=da5735d0280bba96e9a91041bb14aee435ccad5c17b0fa519249ae543d9aa3a5

test_projects/rails/view_demo/Gemfile.lock

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ GEM
8181
tzinfo (~> 2.0, >= 2.0.5)
8282
uri (>= 0.13.1)
8383
base64 (0.3.0)
84+
benchmark (0.5.0)
8485
bigdecimal (4.1.2)
8586
builder (3.3.0)
8687
concurrent-ruby (1.3.8)
@@ -93,7 +94,7 @@ GEM
9394
erubi (1.13.1)
9495
globalid (1.4.0)
9596
activesupport (>= 6.1)
96-
haml (7.4.1)
97+
haml (7.5.0)
9798
prism (>= 1.1.0)
9899
temple (>= 0.8.2)
99100
thor
@@ -128,7 +129,7 @@ GEM
128129
net-protocol
129130
net-pop (0.1.2)
130131
net-protocol
131-
net-protocol (0.2.2)
132+
net-protocol (0.3.0)
132133
timeout
133134
net-smtp (0.5.1)
134135
net-protocol
@@ -251,6 +252,7 @@ PLATFORMS
251252
x86_64-linux-musl
252253

253254
DEPENDENCIES
255+
benchmark
254256
bigdecimal
255257
drb
256258
haml
@@ -276,6 +278,7 @@ CHECKSUMS
276278
activestorage (8.1.3.1) sha256=f555254f387b1cffa499d2fd3115d12635eadc5b15206a8534316a67036163ef
277279
activesupport (8.1.3.1) sha256=85458765f25ea48b9019c46b6bb3fa5683197bf4280d9f06710a6e8d7a831376
278280
base64 (0.3.0) sha256=27337aeabad6ffae05c265c450490628ef3ebd4b67be58257393227588f5a97b
281+
benchmark (0.5.0) sha256=465df122341aedcb81a2a24b4d3bd19b6c67c1530713fd533f3ff034e419236c
279282
bigdecimal (4.1.2) sha256=53d217666027eab4280346fba98e7d5b66baaae1b9c3c1c0ffe89d48188a3fbd
280283
builder (3.3.0) sha256=497918d2f9dca528fdca4b88d84e4ef4387256d984b8154e9d5d3fe5a9c8835f
281284
bundler (4.0.16) sha256=d6ca5dd440c24f9abce9844cf44cc8e18c6a553de65a47efb4544137af92c47d
@@ -288,7 +291,7 @@ CHECKSUMS
288291
erb (6.0.7) sha256=c5ca6dc25b0ef974a44dc8f59fe847577122483b1968a38dec305c60bf91ee92
289292
erubi (1.13.1) sha256=a082103b0885dbc5ecf1172fede897f9ebdb745a4b97a5e8dc63953db1ee4ad9
290293
globalid (1.4.0) sha256=037f12fbf1d9d7a014d501c2d5c77356fd4ddd96d7a7991d6700bba96706f427
291-
haml (7.4.1) sha256=e5d09bfcf91c0c7e49e564385adb9aab0a91bc73767736eb1acbdb97eaf21754
294+
haml (7.5.0) sha256=f84519100c81ee1c3ab55faf9bafe0d9dfbdb19cf75b204897025a719c92cd6e
292295
i18n (1.15.2) sha256=00f9eb62412fe593b2a65a97daa75300d37abb8f7202ec748e94b6d46a9dd1b5
293296
io-console (0.9.2) sha256=efa74f891dd03c0939a931dfc6e74c2813d904763d456ea9762b0525e748db08
294297
irb (1.18.0) sha256=de9454a0703a54704b9811a5ef31a60c86949fbf4013fcf244fabc7c775248e3
@@ -302,7 +305,7 @@ CHECKSUMS
302305
mutex_m (0.3.0) sha256=cfcb04ac16b69c4813777022fdceda24e9f798e48092a2b817eb4c0a782b0751
303306
net-imap (0.6.6) sha256=96aa4ee50df3060203e649efc341f53480b791d49e150f2fdebf68beb141a8df
304307
net-pop (0.1.2) sha256=848b4e982013c15b2f0382792268763b748cce91c9e91e36b0f27ed26420dff3
305-
net-protocol (0.2.2) sha256=aa73e0cba6a125369de9837b8d8ef82a61849360eba0521900e2c3713aa162a8
308+
net-protocol (0.3.0) sha256=ba310c3d4f1cad46bb1ab20336b06669b1ff8f7c568d9cb9342b32a718547472
306309
net-smtp (0.5.1) sha256=ed96a0af63c524fceb4b29b0d352195c30d82dd916a42f03c62a3a70e5b70736
307310
nio4r (2.7.5) sha256=6c90168e48fb5f8e768419c93abb94ba2b892a1d0602cb06eef16d8b7df1dca1
308311
nokogiri (1.19.4-aarch64-linux-gnu) sha256=1269fb644a6de405057a53dd5c762b1209b43ca7424f839454d3dbc677c31a8f

0 commit comments

Comments
 (0)