Flowdock
method

warn

Importance_0
v3.0.0 - Show latest stable - 0 notes - Class: ActiveSupport::Deprecation
warn(message = nil, callstack = caller) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activesupport/lib/active_support/deprecation/reporting.rb, line 6
      def warn(message = nil, callstack = caller)
        return if silenced
        deprecation_message(callstack, message).tap do |m|
          behavior.each { |b| b.call(m, callstack) }
        end
      end
Register or log in to add new notes.