Files
BreakEscape/Gemfile
Z. Cliffe Schreuders 6d06a33a07 Add rubocop-rails-omakase to Gemfile for CI linting
The CI workflow was failing because rubocop was not available in the bundle.
Adding rubocop-rails-omakase which provides the omakase Ruby styling rules
that are configured in .rubocop.yml.
2025-11-25 16:07:05 +00:00

14 lines
228 B
Ruby

source 'https://rubygems.org'
gemspec
gem 'rails', '~> 7.0'
# Development dependencies
group :development, :test do
gem 'sqlite3'
gem 'pry'
gem 'pry-byebug'
gem 'puma'
gem 'rubocop-rails-omakase', require: false
end