Skip to content

File tree

4 files changed

+163
-146
lines changed

4 files changed

+163
-146
lines changed

.rubocop.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
require:
22
- rubocop-factory_bot
3+
- rubocop-rspec_rails
4+
5+
plugins:
36
- rubocop-performance
47
- rubocop-rails
58
- rubocop-rake
6-
- rubocop-rspec_rails
79
- rubocop-rspec
810

911
inherit_gem:

Gemfile

+13-13
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
77
ruby file: '.tool-versions'
88

99
# Web application framework
10-
gem 'rails', '8.0.0'
10+
gem 'rails', '8.0.1'
1111

1212
# Database
13-
gem 'pg', '1.5.8'
13+
gem 'pg', '1.5.9'
1414

1515
# App server
16-
gem 'puma', '6.4.3'
16+
gem 'puma', '6.6.0'
1717

1818
# For JSON serialisation
1919
gem 'active_model_serializers', '0.10.15'
@@ -23,13 +23,13 @@ gem 'bootsnap', '1.18.4', require: false
2323

2424
group :development, :test do
2525
# Cleans database on each test run
26-
gem 'database_cleaner', '2.0.2'
26+
gem 'database_cleaner', '2.1.0'
2727

2828
# Test factories
29-
gem 'factory_bot_rails', '6.4.3'
29+
gem 'factory_bot_rails', '6.4.4'
3030

3131
# BDD testing framework
32-
gem 'rspec-rails', '7.0.1'
32+
gem 'rspec-rails', '7.1.1'
3333

3434
# Code coverage
3535
gem 'simplecov', '0.22.0', require: false
@@ -38,16 +38,16 @@ group :development, :test do
3838
gem 'rails-controller-testing', '1.0.5'
3939

4040
# Code style checker
41-
gem 'rubocop', '1.67.0', require: false
41+
gem 'rubocop', '1.72.2', require: false
4242

4343
# Rubocop Rails cops
44-
gem 'rubocop-rails', '2.26.2', require: false
44+
gem 'rubocop-rails', '2.30.1', require: false
4545

4646
# Rubocop Performance cops
47-
gem 'rubocop-performance', '1.22.1', require: false
47+
gem 'rubocop-performance', '1.24.0', require: false
4848

4949
# Rubocop RSpec cops
50-
gem 'rubocop-rspec', '3.1.0', require: false
50+
gem 'rubocop-rspec', '3.5.0', require: false
5151

5252
# Rubocop RSpec Rails cops
5353
gem 'rubocop-rspec_rails', '2.30.0', require: false
@@ -56,14 +56,14 @@ group :development, :test do
5656
gem 'rubocop-factory_bot', '2.26.1', require: false
5757

5858
# Rubocop Rake cops
59-
gem 'rubocop-rake', '0.6.0', require: false
59+
gem 'rubocop-rake', '0.7.1', require: false
6060

6161
# Shared Rubocop config
6262
gem 'rubocop-config-oharagroup', '2.5.0', require: false
6363

6464
# Debugging
65-
gem 'debug', '1.9.2', require: 'debug/prelude'
65+
gem 'debug', '1.10.0', require: 'debug/prelude'
6666

6767
# Static analysis for security vulnerabilities
68-
gem 'brakeman', '6.2.2', require: false
68+
gem 'brakeman', '7.0.0', require: false
6969
end

0 commit comments

Comments
 (0)