Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Changeset 4927

Show
Ignore:
Timestamp:
09/03/06 19:37:44 (2 years ago)
Author:
david
Message:

Stress that 2.0 is the cut and that we will have a page listing deprecations

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/activesupport/lib/active_support/deprecation.rb

    r4926 r4927  
    3535        def deprecation_message(callstack, message = nil) 
    3636          file, line, method = extract_callstack(callstack) 
    37           message ||= "WARNING: #{method} is deprecated and will be removed from the next major Rails release (2.0)" 
     37          message ||= "WARNING: #{method} is deprecated and will be removed from Rails 2.0. " + 
     38          "See http://www.rubyonrails.org/deprecation for details." 
    3839          "#{message} (#{method} at #{file}:#{line})" 
    3940        end