标签: ruby-on-rails ruby gem dependencies
我正在研究解析xml的ruby gem。我想使用rails Hash.from_xml方法,我想知道是否需要active_support或gem中的任何大型库是不好的做法。这是否增加了太多,所以我可以使用它的一种方法,或者在构建红宝石宝石时这被认为是标准/可靠吗?我会在我的宝石中添加require 'active_support/all'。
Hash.from_xml
active_support
require 'active_support/all'
答案 0 :(得分:2)
我更愿意尽可能少地要求。请参阅:http://guides.rubyonrails.org/active_support_core_extensions.html