diff options
author | Samuel E. Giddins <segiddins@segiddins.me> | 2015-07-15 21:56:26 -0700 |
---|---|---|
committer | Samuel E. Giddins <segiddins@segiddins.me> | 2015-07-15 21:56:26 -0700 |
commit | d80265c48439b4843fc33915af8a772f8078bfdc (patch) | |
tree | 58af8a13aa66b4871fd86176ca40e00cce438286 | |
parent | 6013481fbd475073164ff8ec632b065fcd750f51 (diff) | |
download | bundler-d80265c48439b4843fc33915af8a772f8078bfdc.tar.gz |
Ensure rubocop is installed as a test dep
-rw-r--r-- | spec/support/rubygems_ext.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/spec/support/rubygems_ext.rb b/spec/support/rubygems_ext.rb index 5456ad2e90..f9ea9f2513 100644 --- a/spec/support/rubygems_ext.rb +++ b/spec/support/rubygems_ext.rb @@ -22,6 +22,7 @@ module Spec `gem install rack --no-rdoc --no-ri` # ruby-graphviz is used by the viz tests `gem install ruby-graphviz --no-rdoc --no-ri` if RUBY_VERSION >= "1.9.3" + `gem install rubocop --version ">= 0.32.1" --no-rdoc --no-ri` if RUBY_VERSION >= "1.9.3" end ENV["HOME"] = Path.home.to_s |