module Roda::RodaPlugins::Assets

def self.load_dependencies(app, opts = OPTS)

depends on them.
Load the render, caching, and h plugins, since the assets plugin
def self.load_dependencies(app, opts = OPTS)
  app.plugin :render
  app.plugin :caching
  app.plugin :h
  if opts[:relative_paths]
    app.plugin :relative_path
  end
end