summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2014-02-05 16:16:58 +0200
committerAndre Arko <andre@arko.net>2014-02-05 16:30:25 +0200
commitd63b907b59bcd608de8f704221d2b844aad44387 (patch)
tree02c893651367f37e3381cbccc2a3495cc9ec06a8 /Rakefile
parent66acd02de593a6c7ee271bcbce3917eb3a01825a (diff)
downloadbundler-d63b907b59bcd608de8f704221d2b844aad44387.tar.gz
omg we weren't even checking for the gem o_O
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index 56aeef1aeb..3612b98b5a 100644
--- a/Rakefile
+++ b/Rakefile
@@ -29,7 +29,7 @@ namespace :spec do
desc "Ensure spec dependencies are installed"
task :deps do
{"rdiscount" => "~> 1.6", "ronn" => "~> 0.7.3", "rspec" => "~> 2.13"}.each do |name, version|
- sh "#{Gem.ruby} -S gem list -i #{name} -v '#{version}' || " \
+ sh "#{Gem.ruby} -S gem list -i '^#{name}$' -v '#{version}' || " \
"#{Gem.ruby} -S gem install #{name} -v '#{version}' --no-ri --no-rdoc"
end
end