messick
Results
2
comments of
messick
Both of these happen because of the following protected method in `/lib/httparty/response.rb`: ``` ruby def method_missing(name, *args, &block) if parsed_response.respond_to?(name) parsed_response.send(name, *args, &block) elsif response.respond_to?(name) response.send(name, *args, &block) else super...
Seems like a better solution might be to explicitly implement the methods that are needed, rather than doing the shotgun `method_missing` approach. I'll try to take a look at it...