# File lib/active_resource_response/response_method.rb, line 38 def add_response_method(method_name = :http_response) class_attribute :http_response_method self.http_response_method = method_name class << self alias :find_without_http_response :find def find(*arguments) result = find_without_http_response(*arguments) self.wrap_result(result) end end unless methods.map(&:to_sym).include?(:find_without_http_response) end