Zerigo DNS gem 与 ActiveResource 3.1 不兼容
我正在使用 zerigo_dns 1.2.0 gem (https://github.com/twilson63/zerigo_dns),它需要使用 ActiveResource 进行“请求”调用。它在 Rails 3.0.4 上工作得很好,因为默认格式是 XML。但 Rails 3.1.0.rc4 使用 JSON 作为默认值,并导致出现问题,因为 Zerigo 需要 application/xml mime 类型。
有人知道如何有效地切换到使用 XML 作为默认格式吗?
I'm using the zerigo_dns 1.2.0 gem (https://github.com/twilson63/zerigo_dns) and it needs to make a 'request' call using ActiveResource. It was working fine with Rails 3.0.4 because the default format was XML. But Rails 3.1.0.rc4 uses JSON as default and was causing problems because Zerigo was expecting the application/xml mime-type.
Anyone knows how I can switch to use XML as default format effectively?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Zerigo::DNS::Base 继承自 ActiveResource。你应该能够做
Zerigo::DNS::Base inherits from ActiveResource. You should be able to just do
让它与这个猴子补丁一起工作:
Got it to work with this monkey patch: