summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2011-08-25 22:01:48 -0700
committerAndre Arko <andre@arko.net>2011-08-25 22:04:33 -0700
commite0842c468ac249766c9d291c4042766ddec76ebc (patch)
tree22d78961e125cb3d8c447fdf0b193a9552ac8177 /Rakefile
parent130a0a24d4120eef47fe7690d4d0e7f6903decd2 (diff)
downloadbundler-e0842c468ac249766c9d291c4042766ddec76ebc.tar.gz
the rake task should know its own dependencies
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index ae3e794f99..58e94540b4 100644
--- a/Rakefile
+++ b/Rakefile
@@ -40,7 +40,7 @@ begin
end
desc "Run the tests on Travis CI against a rubygem version (using ENV['RG'])"
- task "travis" do
+ task "travis" => "spec:deps" do
rg = ENV['RG'] || 'master'
puts "\n\e[1;33m[Travis CI] Running bundler sudo specs against rubygems #{rg}\e[m\n\n"
sudos = Rake::Task["spec:rubygems:#{rg}:sudo"].invoke