# File lib/webmock/rack_response.rb, line 7 def evaluate(request) env = build_rack_env(request) status, headers, response = @app.call(env) Response.new( :body => response.join, :headers => headers, :status => status ) end