aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/railties
diff options
context:
space:
mode:
authorCyril Wack <cyril.wack@gmail.com>2011-05-10 15:42:28 -0700
committerCyril Wack <cyril.wack@gmail.com>2011-05-10 15:42:28 -0700
commit17a79437485077a54e65c0d493960c113c419721 (patch)
tree38d6116e27d3cb55b421e75ce2fdb994172be5da /activerecord/lib/active_record/railties
parenta8c1fa4afd4abe6a5c975a164235600d1b8d8b4e (diff)
downloadrails-17a79437485077a54e65c0d493960c113c419721.tar.gz
rails-17a79437485077a54e65c0d493960c113c419721.tar.bz2
rails-17a79437485077a54e65c0d493960c113c419721.zip
Use quotes for command substitution
Diffstat (limited to 'activerecord/lib/active_record/railties')
-rw-r--r--activerecord/lib/active_record/railties/databases.rake4
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/railties/databases.rake b/activerecord/lib/active_record/railties/databases.rake
index 85ad43b35f..bcdabb0f31 100644
--- a/activerecord/lib/active_record/railties/databases.rake
+++ b/activerecord/lib/active_record/railties/databases.rake
@@ -282,7 +282,7 @@ db_namespace = 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
@@ -349,7 +349,7 @@ db_namespace = namespace :db do
if File.exists?(file)
load(file)
else
- abort %{#{file} doesn't exist yet. Run "rake db:migrate" to create it then try again. If you do not intend to use a database, you should instead alter #{Rails.root}/config/application.rb to limit the frameworks that will be loaded}
+ abort %{#{file} doesn't exist yet. Run `rake db:migrate` to create it then try again. If you do not intend to use a database, you should instead alter #{Rails.root}/config/application.rb to limit the frameworks that will be loaded}
end
end
end