module Roda::RodaPlugins::Flash::InstanceMethods
def _route
If the routing doesn't raise an error, rotate the flash
def _route res = super if f = @_flash session[KEY] = f.next end res end
def flash
Access the flash hash for the current request, loading
def flash @_flash ||= FlashHash.new(session[KEY]) end