From a4e3aac40a7545285e4d1ccd78adfc41ca3d5f83 Mon Sep 17 00:00:00 2001 From: Jeremy Kemper Date: Sat, 28 Feb 2009 16:48:14 -0800 Subject: * Introduce ActiveSupport.core_ext Integer, %w(conversions time etc) * Convert some extension modules to simply reopening the class * Remove deprecated Float time extensions * Fold Base64 extension into ActiveSupport::Base64 since stdlib Base64 is gone --- activesupport/lib/active_support/core_ext/util.rb | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 activesupport/lib/active_support/core_ext/util.rb (limited to 'activesupport/lib/active_support/core_ext/util.rb') diff --git a/activesupport/lib/active_support/core_ext/util.rb b/activesupport/lib/active_support/core_ext/util.rb new file mode 100644 index 0000000000..fc4666638c --- /dev/null +++ b/activesupport/lib/active_support/core_ext/util.rb @@ -0,0 +1,10 @@ +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 -- cgit v1.2.3