Put spaces between the words at deprecation warning

This commit is contained in:
Rafael Mendonça França 2012-01-31 14:22:10 -02:00
parent 40b218977e
commit 62c955db79
1 changed files with 3 additions and 3 deletions

View File

@ -58,9 +58,9 @@ module ActiveRecord::Associations::Builder
def dependent_restrict_deprecation_warning
if dependent_restrict_raises?
msg = "In the next release, `:dependent => :restrict` will not raise a `DeleteRestrictionError`."\
"Instead, it will add an error on the model. To fix this warning, make sure your code" \
"isn't relying on a `DeleteRestrictionError` and then add" \
msg = "In the next release, `:dependent => :restrict` will not raise a `DeleteRestrictionError`. "\
"Instead, it will add an error on the model. To fix this warning, make sure your code " \
"isn't relying on a `DeleteRestrictionError` and then add " \
"`config.active_record.dependent_restrict_raises = false` to your application config."
ActiveSupport::Deprecation.warn msg
end