module Roda::RodaPlugins::TimestampPublic

def self.configure(app, opts={})

The options given are also passed to the public plugin.

: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={})
  app.plugin :public, opts
  app.opts[:timestamp_public_prefix] = (opts[:prefix] || app.opts[:timestamp_public_prefix] || "static").dup.freeze
end