summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2011-05-28 11:43:54 -0700
committerAndre Arko <andre@arko.net>2011-05-28 11:43:54 -0700
commitf87201bcbc075607c2c3c85cb1b54a80ab8a36db (patch)
treed74771701e8c23327875b0e0b38f5cfc8cb42e7c /Rakefile
parent1ce02b4f8e0d2481672a3f8da656172275e735f4 (diff)
downloadbundler-f87201bcbc075607c2c3c85cb1b54a80ab8a36db.tar.gz
Check for RSpec 2.x not 2.0.x
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index be547e4c6c..b07d399e16 100644
--- a/Rakefile
+++ b/Rakefile
@@ -6,7 +6,7 @@ namespace :spec do
desc "Ensure spec dependencies are installed"
task :deps do
sh "gem list ronn | (grep 'ronn' 1> /dev/null) || gem install ronn --no-ri --no-rdoc"
- sh "gem list rspec | (grep 'rspec (2.0' 1> /dev/null) || gem install rspec --no-ri --no-rdoc"
+ sh "gem list rspec | (grep 'rspec (2.' 1> /dev/null) || gem install rspec --no-ri --no-rdoc"
end
end