Skip to content

Commit

Permalink
Update to Rails 7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
alexdesi committed Mar 8, 2025
1 parent 1a66102 commit 22ed447
Show file tree
Hide file tree
Showing 74 changed files with 491 additions and 360 deletions.
27 changes: 26 additions & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -214,5 +214,30 @@ RSpec/VerifiedDoubleReference:
Enabled: false

Style/RedundantStringEscape:
Exclude:
Exclude:
- app/services/cd_api/reference_parser_service.rb

# Rails updates enforce double quotes, to avoid conflicts with the existing codebase
# we are enforcing double quotes only on the files listed below
Style/StringLiterals:
EnforcedStyle: double_quotes
Include:
- config/boot.rb
- config/application.rb
- config/environment.rb
- config/environments/development.rb
- config/environments/production.rb
- config/environments/test.rb
- config/initializers/assets.rb
- config/initializers/content_security_policy.rb
- config/initializers/filter_parameter_logging.rb
- config/initializers/inflections.rb
- config/initializers/permissions_policy.rb
- bin/rails
- bin/rake
- bin/setup
# New files from Rails 7.1
- bin/brakeman
- bin/rubocop
- config/initializers/new_framework_defaults_7_2.rb
- config/puma.rb
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ gem 'oauth2', '~> 2.0.9'
gem 'pg', '>= 1.5.9', '< 2.0'
gem 'prometheus_exporter', '2.1.1'
gem 'puma', '>= 5.6.4'
gem 'rails', '~> 7.0.8'
gem 'rails', '~> 7.1'
gem 'redis', '~> 5.3.0'
gem 'sentry-rails', '~> 5.21.0'
gem 'sentry-sidekiq', '~> 5.21.0'
Expand Down
Loading

0 comments on commit 22ed447

Please sign in to comment.