我在我的 Sinatra 应用程序中使用 Hash#to_xml。在我迁移到 actviesupport 3.0.0 之前它确实有效
在 3.0.0 中使用 activesupport 有区别吗?
例如,这很好用
gem 'activesupport', '2.3.5'
require 'active_support'
{}.to_xml
和
gem 'activesupport', '3.0.0'
require 'active_support'
{}.to_xml
生成:NoMethodError: {}:Hash 的未定义方法 `to_xml'