diff --git a/.gitignore b/.gitignore index 37c69299..a9ebd7f2 100644 --- a/.gitignore +++ b/.gitignore @@ -28,4 +28,3 @@ pickle-email-*.html /bundle /doc/app .ruby-version -rubocop.yml diff --git a/.rubocop.yml b/.rubocop.yml index 2dbf0b8e..dbd68f69 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -85,4 +85,5 @@ AllCops: - '**/Rakefile' - '**/config.ru' Exclude: - - db/schema.rb + - 'db/schema.rb' + - 'vendor/bundle/**/*' diff --git a/.travis.yml b/.travis.yml index 432dbb1c..62a547a3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,5 +16,5 @@ before_script: - cp config/secrets.yml.example config/secrets.yml - RAILS_ENV=test bundle exec rake db:migrate --trace script: - - bundle exec rspec --color --format documentation - - bundle exec rubocop -Dc .rubocop.yml + - 'bundle exec rspec --color --format documentation' + - 'bundle exec rubocop -Dc .rubocop.yml'