module Roda::RodaPlugins::Base::ResponseMethods

def inspect

Show response class, status code, response headers, and response body
def inspect
  "#<#{self.class.inspect} #{@status.inspect} #{@headers.inspect} #{@body.inspect}>"
end