rubocop recommends not requiring it in Gemfile

This commit is contained in:
Peter Bhat Harkins 2018-03-21 16:11:54 -05:00
parent 8da472c231
commit f8479b9d8e
2 changed files with 2 additions and 2 deletions

View File

@ -10,5 +10,5 @@ before_script:
- ./bin/rails db:create
- ./bin/rails db:schema:load
script:
- bundle exec rubocop -d
- bundle exec rubocop
- bundle exec rspec

View File

@ -38,7 +38,7 @@ gem "mail"
group :test, :development do
gem "rspec-rails"
gem "machinist"
gem "rubocop"
gem "rubocop", require: false
gem "sqlite3"
gem "faker"
end