module Roda::RodaPlugins::Base::RequestMethods

def response

response['Header-Name'] = 'Header value'
response.status = 200

is to override the response status and headers:
instance methods for the response, but in general the most common usage
The response related to the current request. See ResponseMethods for
def response
  @scope.response
end