aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBryan Helmkamp <bryan@brynary.com>2009-11-09 19:38:44 -0500
committerBryan Helmkamp <bryan@brynary.com>2009-11-09 19:38:44 -0500
commit34e35c7cbc9f378564bf1dd0d6d29553dc59534e (patch)
treef2f1dda6878cff16801afb4d2a46b7c6469d3351
parent2eea340b2269aab85cead2a5e024d6ff9abd6c91 (diff)
downloadrails-34e35c7cbc9f378564bf1dd0d6d29553dc59534e.tar.gz
rails-34e35c7cbc9f378564bf1dd0d6d29553dc59534e.tar.bz2
rails-34e35c7cbc9f378564bf1dd0d6d29553dc59534e.zip
Rake check_dependencies is dead. Don't try to run it
-rw-r--r--Rakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index e1557bda70..fba44e620f 100644
--- a/Rakefile
+++ b/Rakefile
@@ -36,7 +36,7 @@ else
end
desc "Run specs with mysql and sqlite3 database adapters (default)"
- task :spec => ["check_dependencies", "spec:sqlite3", "spec:mysql", "spec:postgresql"]
+ task :spec => ["spec:sqlite3", "spec:mysql", "spec:postgresql"]
desc "Default task is to run specs"
task :default => :spec