From 562648e48ca42e6a263d52677638683add7327a6 Mon Sep 17 00:00:00 2001 From: kou Date: Fri, 26 Apr 2013 13:56:34 +0000 Subject: * lib/rexml/element.rb (REXML::Attributes#to_a): Support namespaced attributes. [ruby-dev:47277] [Bug #8301] Patch by Ippei Obayashi. Thanks!!! * test/rexml/test_attributes.rb (AttributesTester#test_to_a_with_namespaces): Add a test of the above change. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40482 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/rexml/element.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/rexml') diff --git a/lib/rexml/element.rb b/lib/rexml/element.rb index c415830c14..c30b150c0b 100644 --- a/lib/rexml/element.rb +++ b/lib/rexml/element.rb @@ -987,7 +987,7 @@ module REXML end def to_a - values.flatten + enum_for(:each_attribute).to_a end # Returns the number of attributes the owning Element contains. -- cgit v1.2.3