Temporary fix for rubocop during CI builds

This commit is contained in:
Gonzalo Rodriguez 2018-06-20 14:25:49 -03:00
parent d5e585680f
commit 326ab8e098
No known key found for this signature in database
GPG key ID: 5DB8B81B049B8AB1

View file

@ -7,6 +7,12 @@ AllCops:
DisabledByDefault: true
Exclude:
- "examples/instrumentation.rb"
# Remove the following line once we are able to make bundler install gems to <PROJECT_ROOT>/vendor/bundle instead
# of <PROJECT_ROOT>/gemfiles/vendor/bundle during TravisCI builds. The reason that happens for now is because
# bundler 1.x only installs relative to the Gemfile (which during CI builds is always one inside gemfiles/ folder)
# instead of the CWD. Bundler 2.x will add support to install relative to CWD
# (see https://github.com/bundler/bundler/pull/5803).
- "gemfiles/vendor/**/*"
Bundler:
Enabled: true