The only required plugin for Base to work. Provides a simple Response object to manage response details.
response = Response.new.tap do |r| r.body = "Hello World!" r.headers = {"Content-Type" => "text/plain"} r.commit! end response.performed? # => true response.to_h # => { statusCode: 200, headers: { "Content-Type" => "text/plain" }, body: "Hello World!" }
Classes: Response