aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/tasks
diff options
context:
space:
mode:
authorHenrik N <henrik@nyh.se>2008-05-23 11:28:19 +0200
committerHenrik N <henrik@nyh.se>2008-05-23 11:28:19 +0200
commit88ef718361de56cd8900fd5c0a191e2ac420e680 (patch)
treee98a60c3a63c3619bf7ab95b8d7db527303a60c6 /railties/lib/tasks
parent4d276cfafbd0ebd6564d402c3c716803be04a179 (diff)
downloadrails-88ef718361de56cd8900fd5c0a191e2ac420e680.tar.gz
rails-88ef718361de56cd8900fd5c0a191e2ac420e680.tar.bz2
rails-88ef718361de56cd8900fd5c0a191e2ac420e680.zip
Consistently use "rake foo:bar" instead of 'rake foo:bar', `rake foo:bar` or rake foo:bar.
Diffstat (limited to 'railties/lib/tasks')
-rw-r--r--railties/lib/tasks/databases.rake2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/lib/tasks/databases.rake b/railties/lib/tasks/databases.rake
index f40f8463f7..8077d0a401 100644
--- a/railties/lib/tasks/databases.rake
+++ b/railties/lib/tasks/databases.rake
@@ -173,7 +173,7 @@ namespace :db do
pending_migrations.each do |pending_migration|
puts ' %4d %s' % [pending_migration.version, pending_migration.name]
end
- abort "Run `rake db:migrate` to update your database then try again."
+ abort %{Run "rake db:migrate" to update your database then try again.}
end
end
end