Skip to content

Commit 201a7ef

Browse files
committed
Upgrade dependencies.
1 parent 0ce9597 commit 201a7ef

File tree

8 files changed

+199
-155
lines changed

8 files changed

+199
-155
lines changed

.github/workflows/rubocop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- name: Set up Ruby
1212
uses: ruby/setup-ruby@v1
1313
with:
14-
ruby-version: "3.3.5"
14+
ruby-version: "3.4.6"
1515
bundler-cache: true
1616
- name: Run RuboCop
1717
run: bundle exec rubocop

.github/workflows/test.yml

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,24 +3,23 @@ name: test
33
on: [push, pull_request]
44

55
jobs:
6-
test:
6+
RSpec:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v2
10-
- uses: ruby/setup-ruby@v1
11-
with:
12-
ruby-version: "3.3.5"
13-
- uses: supercharge/[email protected]
9+
- uses: actions/checkout@v3
10+
- uses: browser-actions/setup-firefox@latest
1411
with:
15-
mongodb-version: "7.0"
12+
firefox-version: '143.0.3'
1613
- uses: browser-actions/setup-geckodriver@latest
1714
with:
18-
geckodriver-version: "0.34.0"
19-
- uses: browser-actions/setup-firefox@v1
15+
geckodriver-version: "0.36.0"
16+
- uses: supercharge/[email protected]
17+
with:
18+
mongodb-version: "8.0"
19+
- uses: ruby/setup-ruby@v1
2020
with:
21-
firefox-version: "129.0.2"
22-
- run: |
23-
bundle install
21+
ruby-version: "3.4.6"
22+
bundler-cache: true
2423
- uses: GabrielBB/xvfb-action@v1
2524
with:
2625
run: |

.rubocop.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
AllCops:
22
NewCops: enable
3-
TargetRubyVersion: 3.3
3+
TargetRubyVersion: '3.4'
44
Exclude:
55
- vendor/**/*
66
- bin/**/*
@@ -13,7 +13,7 @@ Metrics:
1313

1414
inherit_from: .rubocop_todo.yml
1515

16-
require:
16+
plugins:
1717
- rubocop-capybara
1818
- rubocop-rake
19-
- rubocop-rspec
19+
- rubocop-rspec

.rubocop_todo.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This configuration was generated by
22
# `rubocop --auto-gen-config`
3-
# on 2024-10-20 13:24:03 UTC using RuboCop version 1.67.0.
3+
# on 2025-10-01 12:19:57 UTC using RuboCop version 1.81.1.
44
# The point is for the user to remove these configuration records
55
# one by one as the offenses are removed from the code base.
66
# Note that changes in the inspected code, or installation of new
@@ -89,8 +89,7 @@ RSpec/RepeatedExampleGroupDescription:
8989
- 'spec/api/endpoints/teams_endpoint_spec.rb'
9090

9191
# Offense count: 8
92-
# Configuration parameters: Include, CustomTransform, IgnoreMethods, IgnoreMetadata.
93-
# Include: **/*_spec.rb
92+
# Configuration parameters: CustomTransform, IgnoreMethods, IgnoreMetadata.
9493
RSpec/SpecFilePathFormat:
9594
Exclude:
9695
- '**/spec/routing/**/*'
@@ -121,7 +120,7 @@ RSpec/VoidExpect:
121120

122121
# Offense count: 15
123122
# This cop supports safe autocorrection (--autocorrect).
124-
# Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, AllowedPatterns.
123+
# Configuration parameters: AllowHeredoc, AllowURI, AllowQualifiedName, URISchemes, IgnoreCopDirectives, AllowedPatterns, SplitStrings.
125124
# URISchemes: http, https
126125
Layout/LineLength:
127126
Max: 175

Gemfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
source 'https://rubygems.org'
22

3-
ruby '3.3.5'
3+
ruby '3.4.6'
44

55
gem 'irb'
66
gem 'jsonpath', '0.9.0'
@@ -15,7 +15,7 @@ gem 'rack-robotz'
1515
gem 'rack-server-pages'
1616
gem 'slack-ruby-bot-server-mailchimp'
1717
gem 'slack-ruby-bot-server-rtm'
18-
gem 'unicorn'
18+
gem 'webrick'
1919

2020
group :development, :test do
2121
gem 'foreman'

0 commit comments

Comments
 (0)