diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2006-03-10 04:37:27 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2006-03-10 04:37:27 +0000 |
commit | ffec8c6b0099885f655190e659dab9cde66b13a7 (patch) | |
tree | 80bdf23a46029ac694d87bca383f61fe9c17dde4 /activesupport | |
parent | 3442e0c6714d766b9ea0ca2fc644fdf7753832aa (diff) | |
download | rails-ffec8c6b0099885f655190e659dab9cde66b13a7.tar.gz rails-ffec8c6b0099885f655190e659dab9cde66b13a7.tar.bz2 rails-ffec8c6b0099885f655190e659dab9cde66b13a7.zip |
tag! is nicer than __send__
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3833 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/core_ext/array/conversions.rb | 2 | ||||
-rw-r--r-- | activesupport/lib/active_support/core_ext/hash/conversions.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/activesupport/lib/active_support/core_ext/array/conversions.rb b/activesupport/lib/active_support/core_ext/array/conversions.rb index 59ea7262f1..e0e5a36cfd 100644 --- a/activesupport/lib/active_support/core_ext/array/conversions.rb +++ b/activesupport/lib/active_support/core_ext/array/conversions.rb @@ -38,7 +38,7 @@ module ActiveSupport #:nodoc: children = options.delete(:children) options[:builder].instruct! unless options.delete(:skip_instruct) - options[:builder].__send__(root) { each { |e| e.to_xml(options.merge({ :skip_instruct => true, :root => children })) } } + options[:builder].tag!(root) { each { |e| e.to_xml(options.merge({ :skip_instruct => true, :root => children })) } } end end end diff --git a/activesupport/lib/active_support/core_ext/hash/conversions.rb b/activesupport/lib/active_support/core_ext/hash/conversions.rb index bbbda3698f..840421789b 100644 --- a/activesupport/lib/active_support/core_ext/hash/conversions.rb +++ b/activesupport/lib/active_support/core_ext/hash/conversions.rb @@ -32,7 +32,7 @@ module ActiveSupport #:nodoc: else type_name = XML_TYPE_NAMES[value.class.to_s] - options[:builder].__send__(key.to_s.dasherize, + options[:builder].tag!(key.to_s.dasherize, XML_FORMATTING[type_name] ? XML_FORMATTING[type_name].call(value) : value, options[:skip_types] || value.nil? || type_name.nil? ? { } : { :type => type_name } ) |