summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorThe Bundler Bot <bot@bundler.io>2017-10-01 06:28:43 +0000
committerThe Bundler Bot <bot@bundler.io>2017-10-01 06:28:43 +0000
commitc855c8a7640dcee9fb258fcc4e14cbf5774d62b7 (patch)
tree0f9421d1f8e19b997f965e4a8cd3bcf77df130b9 /Rakefile
parent840a990db0e266e3149a63a305a7849deba095c3 (diff)
parent529167f74544ccd7fab5eda25c18433a69e68747 (diff)
downloadbundler-c855c8a7640dcee9fb258fcc4e14cbf5774d62b7.tar.gz
Auto merge of #6059 - walf443:rubocop_parallel, r=colby-swandale
use rubocop --parallel option ### What was the end-user problem that led to this PR? No ### What is your fix for the problem, implemented in this PR? My fix enable rubocop's parallel option. This may improve rubocop's test time.
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index eefa672769..b7a5932cb2 100644
--- a/Rakefile
+++ b/Rakefile
@@ -105,7 +105,8 @@ begin
# can't go in the gemspec because of the ruby version requirement
gem "rubocop", "= 0.50.0"
require "rubocop/rake_task"
- RuboCop::RakeTask.new
+ rubocop = RuboCop::RakeTask.new
+ rubocop.options = ["--parallel"]
end
namespace :spec do