Skip to content

Commit bc2e871

Browse files
authored
Update all Bundler dependencies (2025-02-17) (#1285)
1 parent 9ce0422 commit bc2e871

File tree

6 files changed

+33
-20
lines changed

6 files changed

+33
-20
lines changed

.rubocop.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,12 @@ inherit_mode: { merge: [Exclude] }
44
require:
55
- rubocop-capybara
66
- rubocop-factory_bot
7+
- rubocop-rspec_rails
8+
9+
plugins:
710
- rubocop-rails
811
- rubocop-rake
912
- rubocop-rspec
10-
- rubocop-rspec_rails
1113

1214
AllCops:
1315
DisplayCopNames: true

Gemfile.lock

+19-14
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ GEM
127127
reline (>= 0.3.8)
128128
descendants_tracker (0.0.4)
129129
thread_safe (~> 0.3, >= 0.3.1)
130-
diff-lcs (1.5.1)
130+
diff-lcs (1.6.0)
131131
docile (1.4.1)
132132
dotenv (3.1.7)
133133
dotenv-rails (3.1.7)
@@ -172,9 +172,10 @@ GEM
172172
pp (>= 0.6.0)
173173
rdoc (>= 4.0.0)
174174
reline (>= 0.4.2)
175-
json (2.9.1)
175+
json (2.10.1)
176176
language_server-protocol (3.17.0.4)
177-
logger (1.6.5)
177+
lint_roller (1.1.0)
178+
logger (1.6.6)
178179
loofah (2.24.0)
179180
crass (~> 1.0.2)
180181
nokogiri (>= 1.12.0)
@@ -277,7 +278,7 @@ GEM
277278
regexp_parser (2.10.0)
278279
reline (0.6.0)
279280
io-console (~> 0.5)
280-
rexml (3.4.0)
281+
rexml (3.4.1)
281282
rspec (3.13.0)
282283
rspec-core (~> 3.13.0)
283284
rspec-expectations (~> 3.13.0)
@@ -299,9 +300,10 @@ GEM
299300
rspec-mocks (~> 3.13)
300301
rspec-support (~> 3.13)
301302
rspec-support (3.13.2)
302-
rubocop (1.71.2)
303+
rubocop (1.72.2)
303304
json (~> 2.3)
304-
language_server-protocol (>= 3.17.0)
305+
language_server-protocol (~> 3.17.0.2)
306+
lint_roller (~> 1.1.0)
305307
parallel (~> 1.10)
306308
parser (>= 3.3.0.2)
307309
rainbow (>= 2.2.2, < 4.0)
@@ -315,15 +317,18 @@ GEM
315317
rubocop (~> 1.41)
316318
rubocop-factory_bot (2.26.1)
317319
rubocop (~> 1.61)
318-
rubocop-rails (2.29.1)
320+
rubocop-rails (2.30.0)
319321
activesupport (>= 4.2.0)
322+
lint_roller (~> 1.1)
320323
rack (>= 1.1)
321-
rubocop (>= 1.52.0, < 2.0)
322-
rubocop-ast (>= 1.31.1, < 2.0)
323-
rubocop-rake (0.6.0)
324-
rubocop (~> 1.0)
325-
rubocop-rspec (3.4.0)
326-
rubocop (~> 1.61)
324+
rubocop (>= 1.72.1, < 2.0)
325+
rubocop-ast (>= 1.38.0, < 2.0)
326+
rubocop-rake (0.7.1)
327+
lint_roller (~> 1.1)
328+
rubocop (>= 1.72.1)
329+
rubocop-rspec (3.5.0)
330+
lint_roller (~> 1.1)
331+
rubocop (~> 1.72, >= 1.72.1)
327332
rubocop-rspec_rails (2.30.0)
328333
rubocop (~> 1.61)
329334
rubocop-rspec (~> 3, >= 3.0.1)
@@ -353,7 +358,7 @@ GEM
353358
actionpack (>= 6.1)
354359
activesupport (>= 6.1)
355360
sprockets (>= 3.0.0)
356-
stringio (3.1.2)
361+
stringio (3.1.3)
357362
stripe (13.4.1)
358363
sync (0.5.0)
359364
term-ansicolor (1.11.2)

bin/dev

+2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
#!/usr/bin/env ruby
2+
# frozen_string_literal: true
3+
24
exec "./bin/rails", "server", *ARGV

bin/rubocop

+2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
#!/usr/bin/env ruby
2+
# frozen_string_literal: true
3+
24
require "rubygems"
35
require "bundler/setup"
46

bin/setup

+5-5
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ require "fileutils"
55

66
APP_ROOT = File.expand_path("..", __dir__)
77

8-
def system!(*args)
9-
system(*args, exception: true)
8+
def system!(*)
9+
system(*, exception: true)
1010
end
1111

12-
FileUtils.chdir APP_ROOT do
12+
FileUtils.chdir(APP_ROOT) do
1313
# This script is a way to set up or update your development environment automatically.
1414
# This script is idempotent, so that you can run it at any time and get an expectable outcome.
1515
# Add necessary setup steps to this file.
@@ -28,9 +28,9 @@ FileUtils.chdir APP_ROOT do
2828
puts "\n== Removing old logs and tempfiles =="
2929
system! "bin/rails log:clear tmp:clear"
3030

31-
unless ARGV.include?("--skip-server")
31+
if ARGV.exclude?("--skip-server")
3232
puts "\n== Starting development server =="
33-
STDOUT.flush # flush the output before exec(2) so that it displays
33+
$stdout.flush # flush the output before exec(2) so that it displays
3434
exec "bin/dev"
3535
end
3636
end

bin/thrust

+2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
#!/usr/bin/env ruby
2+
# frozen_string_literal: true
3+
24
require "rubygems"
35
require "bundler/setup"
46

0 commit comments

Comments
 (0)