module Roda::RodaPlugins::TimestampPublic
def self.configure(app, opts=OPTS)
:prefix :: The prefix for paths, before the timestamp segment
recognized by the plugin:
Use options given to setup timestamped file serving. The following option is
def self.configure(app, opts=OPTS) app.opts[:timestamp_public_prefix] = (opts[:prefix] || app.opts[:timestamp_public_prefix] || "static").dup.freeze end
def self.load_dependencies(app, opts=OPTS)
def self.load_dependencies(app, opts=OPTS) app.plugin :public, opts end