aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/array
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2009-09-24 18:36:40 -0700
committerJeremy Kemper <jeremy@bitsweat.net>2009-09-24 18:38:18 -0700
commit0bd6e933c01868db7c7e20d46c972c4e7395b743 (patch)
treed91dbf5aaf990748082e42eb772ba049844794a3 /activesupport/lib/active_support/core_ext/array
parent772a32a22d71f7a22108719d88c94959ae4942b6 (diff)
downloadrails-0bd6e933c01868db7c7e20d46c972c4e7395b743.tar.gz
rails-0bd6e933c01868db7c7e20d46c972c4e7395b743.tar.bz2
rails-0bd6e933c01868db7c7e20d46c972c4e7395b743.zip
Restore split between require-time and runtime load path mungery. Simplifies vendor requires.
Diffstat (limited to 'activesupport/lib/active_support/core_ext/array')
-rw-r--r--activesupport/lib/active_support/core_ext/array/conversions.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/core_ext/array/conversions.rb b/activesupport/lib/active_support/core_ext/array/conversions.rb
index 0743ab181e..c53cf3f530 100644
--- a/activesupport/lib/active_support/core_ext/array/conversions.rb
+++ b/activesupport/lib/active_support/core_ext/array/conversions.rb
@@ -157,7 +157,7 @@ class Array
#
def to_xml(options = {})
raise "Not all elements respond to to_xml" unless all? { |e| e.respond_to? :to_xml }
- require 'active_support/vendor/builder' unless defined?(Builder)
+ require 'builder' unless defined?(Builder)
options = options.dup
options[:root] ||= all? { |e| e.is_a?(first.class) && first.class.to_s != "Hash" } ? ActiveSupport::Inflector.pluralize(ActiveSupport::Inflector.underscore(first.class.name)) : "records"