ackama / rails-template

Application template for Rails 7 projects; preloaded with best practices for TDD, security, deployment, and developer productivity.
Other
294 stars 15 forks source link

refactor: update rubocop and explicitly target Rails 7.1 #525

Closed G-Rath closed 7 months ago

G-Rath commented 7 months ago

Unsurprisingly Rubocop can't figure out that rails-template is targeting v7.1 since we don't have a explicitly dependency on Rails in our Gemfile - this means it doesn't flag that we can now use Rails.env.local? in a couple of places, which is neat.

Also updated everything else and applied those other fixes.