aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/module.rb
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2009-04-22 00:33:00 -0700
committerJeremy Kemper <jeremy@bitsweat.net>2009-04-22 00:33:00 -0700
commite6eb941d1bd192e1fc6f5c17cbe1944d534ca67a (patch)
tree82f3a22c0c4a2a004759767924e5dd1e29695db3 /activesupport/lib/active_support/core_ext/module.rb
parente9ed44af88fcffe75e1658e963e6dfb26b31edbe (diff)
downloadrails-e6eb941d1bd192e1fc6f5c17cbe1944d534ca67a.tar.gz
rails-e6eb941d1bd192e1fc6f5c17cbe1944d534ca67a.tar.bz2
rails-e6eb941d1bd192e1fc6f5c17cbe1944d534ca67a.zip
Switch last module core extension to class reopen
Diffstat (limited to 'activesupport/lib/active_support/core_ext/module.rb')
-rw-r--r--activesupport/lib/active_support/core_ext/module.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/activesupport/lib/active_support/core_ext/module.rb b/activesupport/lib/active_support/core_ext/module.rb
index c37c9badca..fee91534e7 100644
--- a/activesupport/lib/active_support/core_ext/module.rb
+++ b/activesupport/lib/active_support/core_ext/module.rb
@@ -10,16 +10,3 @@ require 'active_support/core_ext/module/loading'
require 'active_support/core_ext/module/model_naming'
require 'active_support/core_ext/module/synchronization'
require 'active_support/core_ext/module/setup'
-
-module ActiveSupport
- module CoreExtensions
- # Various extensions for the Ruby core Module class.
- module Module
- # Nothing here. Only defined for API documentation purposes.
- end
- end
-end
-
-class Module
- include ActiveSupport::CoreExtensions::Module
-end