Skip to content

Commit

Permalink
Fix warning: circular require considered harmful.
Browse files Browse the repository at this point in the history
  • Loading branch information
kennyj committed Oct 2, 2012
1 parent df08271 commit 8b05cfa
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions activesupport/lib/active_support/deprecation.rb
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
require 'active_support/core_ext/module/deprecation'
require 'active_support/deprecation/instance_delegator'
require 'active_support/deprecation/behaviors'
require 'active_support/deprecation/reporting'
require 'active_support/deprecation/method_wrappers'
require 'active_support/deprecation/proxy_wrappers'
require 'singleton'

module ActiveSupport
# \Deprecation specifies the API used by Rails to deprecate methods, instance
# variables, objects and constants.
class Deprecation
require 'active_support/deprecation/instance_delegator'
require 'active_support/deprecation/behaviors'
require 'active_support/deprecation/reporting'
require 'active_support/deprecation/method_wrappers'
require 'active_support/deprecation/proxy_wrappers'
require 'active_support/core_ext/module/deprecation'

include Singleton
include InstanceDelegator
include Behavior
Expand Down

0 comments on commit 8b05cfa

Please sign in to comment.