Sha256: 2079b6a4d0cfab283ab858d69cd882f47542d27dbc7028f7fcda2edc08172cef

Contents?: true

Size: 1.47 KB

Versions: 265

Compression:

Stored size: 1.47 KB

Contents

require "active_support/notifications"
require "active_support/core_ext/array/wrap"

module ActiveSupport
  module Deprecation
    class << self
      # Whether to print a backtrace along with the warning.
      attr_accessor :debug

      # Returns the set behavior or if one isn't set, defaults to +:stderr+
      def behavior
        @behavior ||= [DEFAULT_BEHAVIORS[:stderr]]
      end

      # Sets the behavior to the specified value. Can be a single value or an array.
      #
      # Examples
      #
      #   ActiveSupport::Deprecation.behavior = :stderr
      #   ActiveSupport::Deprecation.behavior = [:stderr, :log]
      def behavior=(behavior)
        @behavior = Array.wrap(behavior).map { |b| DEFAULT_BEHAVIORS[b] || b }
      end
    end

    # Default warning behaviors per Rails.env.
    DEFAULT_BEHAVIORS = {
      :stderr => Proc.new { |message, callstack|
         $stderr.puts(message)
         $stderr.puts callstack.join("\n  ") if debug
       },
      :log => Proc.new { |message, callstack|
         logger =
           if defined?(Rails) && Rails.logger
             Rails.logger
           else
             require 'logger'
             Logger.new($stderr)
           end
         logger.warn message
         logger.debug callstack.join("\n  ") if debug
       },
       :notify => Proc.new { |message, callstack|
          ActiveSupport::Notifications.instrument("deprecation.rails",
            :message => message, :callstack => callstack)
       }
    }
  end
end

Version data entries

265 entries across 221 versions & 25 rubygems

Version Path
activesupport-3.2.19 lib/active_support/deprecation/behaviors.rb
activesupport-3.2.18 lib/active_support/deprecation/behaviors.rb
activesupport-3.2.17 lib/active_support/deprecation/behaviors.rb
activesupport-3.2.16 lib/active_support/deprecation/behaviors.rb
activesupport-3.2.15 lib/active_support/deprecation/behaviors.rb
activesupport-3.2.15.rc3 lib/active_support/deprecation/behaviors.rb
activesupport-3.2.15.rc2 lib/active_support/deprecation/behaviors.rb
activesupport-3.2.15.rc1 lib/active_support/deprecation/behaviors.rb
activesupport-3.2.14 lib/active_support/deprecation/behaviors.rb
activesupport-3.2.14.rc2 lib/active_support/deprecation/behaviors.rb
activesupport-3.2.14.rc1 lib/active_support/deprecation/behaviors.rb
classiccms-0.7.2 vendor/bundle/gems/activesupport-3.2.3/lib/active_support/deprecation/behaviors.rb
classiccms-0.7.1 vendor/bundle/gems/activesupport-3.2.3/lib/active_support/deprecation/behaviors.rb
swipe-rails-0.0.5 vendor/bundle/gems/activesupport-3.2.13/lib/active_support/deprecation/behaviors.rb
active_mailer-0.0.9 test/fixtures/dummyapp_rails_3.2/vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.12/lib/active_support/deprecation/behaviors.rb
active_mailer-0.0.8 test/fixtures/dummyapp_rails_3.2/vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.12/lib/active_support/deprecation/behaviors.rb
active_mailer-0.0.7 test/fixtures/dummyapp_rails_3.2/vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.12/lib/active_support/deprecation/behaviors.rb
active_mailer-0.0.6 test/fixtures/dummyapp_rails_3.2/vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.12/lib/active_support/deprecation/behaviors.rb
classiccms-0.7.0 vendor/bundle/gems/activesupport-3.2.3/lib/active_support/deprecation/behaviors.rb
font-awesome-rails-3.1.1.2 vendor/ruby/2.0.0/gems/activesupport-3.2.12/lib/active_support/deprecation/behaviors.rb