module Roda::RodaPlugins::Flash::InstanceMethods
def call
If the routing doesn't raise an error, rotate the flash
def call 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