Sha256: 245b6ecb90c1a37aba3713b597c5c218c6b90f498b796314f6441af8d168b0c9

Contents?: true

Size: 1.16 KB

Versions: 42

Compression:

Stored size: 1.16 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

      def behavior
        @behavior ||= [DEFAULT_BEHAVIORS[:stderr]]
      end

      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

42 entries across 42 versions & 3 rubygems

Version Path
social_url_stats-0.0.1 vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/deprecation/behaviors.rb
activesupport-3.0.20 lib/active_support/deprecation/behaviors.rb
activesupport-3.0.19 lib/active_support/deprecation/behaviors.rb
activesupport-3.0.18 lib/active_support/deprecation/behaviors.rb
activesupport-3.0.17 lib/active_support/deprecation/behaviors.rb
activesupport-3.0.16 lib/active_support/deprecation/behaviors.rb
activesupport-3.0.15 lib/active_support/deprecation/behaviors.rb
activesupport-3.0.14 lib/active_support/deprecation/behaviors.rb
activesupport-3.0.13 lib/active_support/deprecation/behaviors.rb
activesupport-3.0.13.rc1 lib/active_support/deprecation/behaviors.rb
activesupport-3.0.12 lib/active_support/deprecation/behaviors.rb
activesupport-3.0.12.rc1 lib/active_support/deprecation/behaviors.rb
activesupport-3.0.11 lib/active_support/deprecation/behaviors.rb
messagebus_ruby_api-0.4.7 spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/deprecation/behaviors.rb
messagebus_ruby_api-0.4.4 spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/deprecation/behaviors.rb
activesupport-3.0.10 lib/active_support/deprecation/behaviors.rb
activesupport-3.0.10.rc1 lib/active_support/deprecation/behaviors.rb
activesupport-3.0.9 lib/active_support/deprecation/behaviors.rb
activesupport-3.0.9.rc5 lib/active_support/deprecation/behaviors.rb
activesupport-3.0.9.rc4 lib/active_support/deprecation/behaviors.rb