We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a3b311 commit 3a56e2dCopy full SHA for 3a56e2d
lib/runcible/response.rb
@@ -7,8 +7,8 @@ def initialize(parsed_body, rest_client_response)
7
@parsed_body = parsed_body
8
end
9
10
- def respond_to?(name)
11
- @parsed_body.respond_to?(name) || @rest_client_response.respond_to?(name)
+ def respond_to?(name, include_all=false)
+ @parsed_body.respond_to?(name, include_all) || @rest_client_response.respond_to?(name, include_all)
12
13
14
def ==(other)
0 commit comments