diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2015-03-27 16:58:18 -0300 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2015-03-27 16:58:49 -0300 |
commit | 8bf2825205ad392c923070e722fc8d39687520e3 (patch) | |
tree | 54479998d082516c495480bc7ab379bd3f09cf61 /activesupport/lib | |
parent | 6e8f6ff3f02e19f687493b26b1e2fe5a1ef0bcb6 (diff) | |
download | rails-8bf2825205ad392c923070e722fc8d39687520e3.tar.gz rails-8bf2825205ad392c923070e722fc8d39687520e3.tar.bz2 rails-8bf2825205ad392c923070e722fc8d39687520e3.zip |
Remove circular require
Diffstat (limited to 'activesupport/lib')
-rw-r--r-- | activesupport/lib/active_support/core_ext/module/aliasing.rb | 2 | ||||
-rw-r--r-- | activesupport/lib/active_support/core_ext/module/deprecation.rb | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/activesupport/lib/active_support/core_ext/module/aliasing.rb b/activesupport/lib/active_support/core_ext/module/aliasing.rb index dcc1cd5ba9..25e138264e 100644 --- a/activesupport/lib/active_support/core_ext/module/aliasing.rb +++ b/activesupport/lib/active_support/core_ext/module/aliasing.rb @@ -1,5 +1,3 @@ -require 'active_support/deprecation' - class Module # Encapsulates the common pattern of: # diff --git a/activesupport/lib/active_support/core_ext/module/deprecation.rb b/activesupport/lib/active_support/core_ext/module/deprecation.rb index 5134b5ad41..56d670fbe8 100644 --- a/activesupport/lib/active_support/core_ext/module/deprecation.rb +++ b/activesupport/lib/active_support/core_ext/module/deprecation.rb @@ -1,5 +1,3 @@ -require 'active_support/deprecation' - class Module # deprecate :foo # deprecate bar: 'message' |