Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
scottohara committed Oct 16, 2024
1 parent 0ac0658 commit 1fbb364
Show file tree
Hide file tree
Showing 18 changed files with 380 additions and 390 deletions.
5 changes: 4 additions & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,19 @@
require:
- rubocop-factory_bot
- rubocop-performance
- rubocop-rails
- rubocop-rake
- rubocop-rspec_rails
- rubocop-rspec
- rubocop-factory_bot

inherit_gem:
rubocop-config-oharagroup:
- default.yml
- factory_bot.yml
- performance.yml
- rails.yml
- rake.yml
- rspec_rails.yml
- rspec.yml

AllCops:
Expand Down
28 changes: 17 additions & 11 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,21 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby file: '.tool-versions'

# Web application framework
gem 'rails', '7.1.3'
gem 'rails', '7.2.1.1'

# Postgres
gem 'pg', '1.5.5'
gem 'pg', '1.5.8'

group :development, :production do
# Use Puma as the app server
gem 'puma', '6.4.2'
gem 'puma', '6.4.3'
end

# For JSON serialisation
gem 'active_model_serializers', '0.10.14'

# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '1.18.3', require: false
gem 'bootsnap', '1.18.4', require: false

group :development, :test do
# Cleans database on each test run
Expand All @@ -31,7 +31,7 @@ group :development, :test do
gem 'factory_bot_rails', '6.4.3'

# BDD testing framework
gem 'rspec-rails', '6.1.1'
gem 'rspec-rails', '7.0.1'

# Code coverage
gem 'simplecov', '0.22.0', require: false
Expand All @@ -40,23 +40,29 @@ group :development, :test do
gem 'rails-controller-testing', '1.0.5'

# Code style checker
gem 'rubocop', '1.60.2', require: false
gem 'rubocop', '1.67.0', require: false

# Rubocop Rails cops
gem 'rubocop-rails', '2.23.1', require: false
gem 'rubocop-rails', '2.26.2', require: false

# Rubocop Performance cops
gem 'rubocop-performance', '1.20.2', require: false
gem 'rubocop-performance', '1.22.1', require: false

# Rubocop RSpec cops
gem 'rubocop-rspec', '2.26.1', require: false
gem 'rubocop-rspec', '3.1.0', require: false

# Rubocop RSpec Rails cops
gem 'rubocop-rspec_rails', '2.30.0', require: false

# Rubocop FactoryBot cops
gem 'rubocop-factory_bot', '2.26.1', require: false

# Rubocop Rake cops
gem 'rubocop-rake', '0.6.0', require: false

# Shared Rubocop config
gem 'rubocop-config-oharagroup', '2.4.0', require: false
gem 'rubocop-config-oharagroup', '2.5.0', require: false

# Debugging
gem 'debug', '1.9.1'
gem 'debug', '1.9.2', require: 'debug/prelude'
end
Loading

0 comments on commit 1fbb364

Please sign in to comment.