aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--activesupport/lib/active_support/core_ext/util.rb10
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