# File lib/faraday/response.rb, line 43 def finish(env) env[:body] ||= '' @on_complete_callbacks.each { |c| c.call(env) } @status, @headers, @body = env[:status], env[:response_headers], env[:body] self end