aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2006-12-03 16:47:53 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2006-12-03 16:47:53 +0000
commit0297b31b8235ee5c64743fdd4f922b008dd83af0 (patch)
tree224bfd38a876a7b3aa7ce47a4efc6c83e7ae5e9d /activesupport
parent7611fa6d469cef9accabe6bb5e7e95914756322a (diff)
downloadrails-0297b31b8235ee5c64743fdd4f922b008dd83af0.tar.gz
rails-0297b31b8235ee5c64743fdd4f922b008dd83af0.tar.bz2
rails-0297b31b8235ee5c64743fdd4f922b008dd83af0.zip
Fixed Array#to_xml when it contains a series of hashes (each piece would get its own XML declaration) (closes #6610) [thkarcher/cyu]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5668 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/CHANGELOG2
-rw-r--r--activesupport/lib/active_support/core_ext/array/conversions.rb4
-rw-r--r--activesupport/test/core_ext/array_ext_test.rb10
3 files changed, 14 insertions, 2 deletions
diff --git a/activesupport/CHANGELOG b/activesupport/CHANGELOG
index b1747b3ed0..ac42d9c630 100644
--- a/activesupport/CHANGELOG
+++ b/activesupport/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* Fixed Array#to_xml when it contains a series of hashes (each piece would get its own XML declaration) #6610 [thkarcher/cyu]
+
* Added Time#to_s(:time) which will just return H:M, like 17:44 [DHH]
* Add Module#attr_accessor_with_default to initialize value of attribute before setting it. Closes #6538. [Stuart Halloway, Marcel Molina Jr.]
diff --git a/activesupport/lib/active_support/core_ext/array/conversions.rb b/activesupport/lib/active_support/core_ext/array/conversions.rb
index 1a5ddee9c6..51ac83294c 100644
--- a/activesupport/lib/active_support/core_ext/array/conversions.rb
+++ b/activesupport/lib/active_support/core_ext/array/conversions.rb
@@ -61,9 +61,9 @@ module ActiveSupport #:nodoc:
options[:builder].instruct! unless options.delete(:skip_instruct)
- opts = options.merge({ :skip_instruct => true, :root => children })
+ opts = options.merge({ :root => children })
- options[:builder].tag!(root) { each { |e| e.to_xml(opts) } }
+ options[:builder].tag!(root) { each { |e| e.to_xml(opts.merge!({ :skip_instruct => true })) } }
end
end
diff --git a/activesupport/test/core_ext/array_ext_test.rb b/activesupport/test/core_ext/array_ext_test.rb
index 957c56c92d..709df84f06 100644
--- a/activesupport/test/core_ext/array_ext_test.rb
+++ b/activesupport/test/core_ext/array_ext_test.rb
@@ -169,4 +169,14 @@ class ArrayToXmlTests < Test::Unit::TestCase
assert xml.include?(%(<street-address>Paulina</street-address>))
assert xml.include?(%(<street-address>Evergreen</street-address>))
end
+
+ def test_to_with_instruct
+ xml = [
+ { :name => "David", :age => 26, :age_in_millis => 820497600000 },
+ { :name => "Jason", :age => 31, :age_in_millis => BigDecimal.new('1.0') }
+ ].to_xml(:skip_instruct => false, :indent => 0)
+
+ assert /^<\?xml [^>]*/.match(xml)
+ assert xml.rindex(/<\?xml /) == 0
+ end
end