mirror of
https://github.com/cliffe/BreakEscape.git
synced 2026-02-21 11:18:08 +00:00
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.
14 lines
228 B
Ruby
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
|