diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2009-04-22 00:34:08 -0700 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2009-04-22 00:34:24 -0700 |
commit | 35afad620bf4b005fda3415d026efc4d7d671246 (patch) | |
tree | 472bb7a6e8db65cf064cbab72983e6bf517a0b78 | |
parent | e6eb941d1bd192e1fc6f5c17cbe1944d534ca67a (diff) | |
download | rails-35afad620bf4b005fda3415d026efc4d7d671246.tar.gz rails-35afad620bf4b005fda3415d026efc4d7d671246.tar.bz2 rails-35afad620bf4b005fda3415d026efc4d7d671246.zip |
ActiveSupport.core_ext bridge util no longer used
-rw-r--r-- | activesupport/lib/active_support/core_ext/util.rb | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/activesupport/lib/active_support/core_ext/util.rb b/activesupport/lib/active_support/core_ext/util.rb deleted file mode 100644 index fc4666638c..0000000000 --- a/activesupport/lib/active_support/core_ext/util.rb +++ /dev/null @@ -1,10 +0,0 @@ -module ActiveSupport - class << self - def core_ext(subject, names) - names.each do |name| - require "active_support/core_ext/#{Inflector.underscore(subject.name)}/#{name}" - subject.send :include, Inflector.constantize("ActiveSupport::CoreExtensions::#{subject.name}::#{Inflector.camelize(name)}") - end - end - end -end |