1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Fix subject-verb agreement in error msg (and other grammar stuff)

This commit is contained in:
thenickcox 2013-04-17 20:25:05 -07:00
parent a7ef0982d4
commit 431b236f5d

View file

@ -156,7 +156,7 @@ db_namespace = namespace :db do
begin begin
puts ActiveRecord::Tasks::DatabaseTasks.collation_current puts ActiveRecord::Tasks::DatabaseTasks.collation_current
rescue NoMethodError rescue NoMethodError
$stderr.puts 'Sorry, your database adapter is not supported yet, feel free to submit a patch' $stderr.puts 'Sorry, your database adapter is not supported yet. Feel free to submit a patch.'
end end
end end
@ -170,7 +170,7 @@ db_namespace = namespace :db do
pending_migrations = ActiveRecord::Migrator.open(ActiveRecord::Migrator.migrations_paths).pending_migrations pending_migrations = ActiveRecord::Migrator.open(ActiveRecord::Migrator.migrations_paths).pending_migrations
if pending_migrations.any? if pending_migrations.any?
puts "You have #{pending_migrations.size} pending migrations:" puts "You have #{pending_migrations.size} pending #{pending_migrations.size > 1 ? 'migrations:' : 'migration:'}"
pending_migrations.each do |pending_migration| pending_migrations.each do |pending_migration|
puts ' %4d %s' % [pending_migration.version, pending_migration.name] puts ' %4d %s' % [pending_migration.version, pending_migration.name]
end end
@ -241,7 +241,7 @@ db_namespace = namespace :db do
if File.exists?(file) if File.exists?(file)
load(file) load(file)
else 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 end