module Roda::RodaPlugins::Base::RequestMethods
def session
The session for the current request. Raises a RodaError if
def session @env['rack.session'] || raise(RodaError, "You're missing a session handler. You can get started by adding use Rack::Session::Cookie") end