class RodaSessionMiddleware::SessionHash

def fetch(key, default = (no_default = true), &block)

def fetch(key, default = (no_default = true), &block)
  load!
  if no_default
    @data.fetch(key.to_s, &block)
  else
    @data.fetch(key.to_s, default, &block)
  end
end