module Roda::RodaPlugins::HmacPaths::InstanceMethods

def hmac_path_default_namespace

The default namespace to use for hmac_path, if a :namespace option is not provided.
def hmac_path_default_namespace
  if (key = opts[:hmac_paths_namespace_session_key]) && (value = session[key])
    value.to_s
  end
end