aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--activesupport/lib/active_support/deprecation.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/deprecation.rb b/activesupport/lib/active_support/deprecation.rb
index 0f1d6e9b8b..696227ca94 100644
--- a/activesupport/lib/active_support/deprecation.rb
+++ b/activesupport/lib/active_support/deprecation.rb
@@ -34,7 +34,8 @@ module ActiveSupport
private
def deprecation_message(callstack, message = nil)
file, line, method = extract_callstack(callstack)
- message ||= "WARNING: #{method} is deprecated and will be removed from the next major Rails release (2.0)"
+ message ||= "WARNING: #{method} is deprecated and will be removed from Rails 2.0. " +
+ "See http://www.rubyonrails.org/deprecation for details."
"#{message} (#{method} at #{file}:#{line})"
end