summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorKeiji Yoshimi <walf443@gmail.com>2017-09-24 16:45:41 +0900
committerKeiji Yoshimi <walf443@gmail.com>2017-09-24 16:45:41 +0900
commit529167f74544ccd7fab5eda25c18433a69e68747 (patch)
tree75f8361406fdc5536aff4445ca24c69eefaee4bc /Rakefile
parent1b1db94e045cdf690bc93939612d17d7ee44c369 (diff)
downloadbundler-529167f74544ccd7fab5eda25c18433a69e68747.tar.gz
use rubocop --parallel option
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index 39a61f4fea..f76d61fe3f 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