Method: Roda::RodaPlugins::Assets.load_dependencies

Defined in:
lib/roda/plugins/assets.rb

.load_dependencies(app, _opts = {}) ⇒ Object

Load the render and caching plugins plugins, since the assets plugin depends on them.



245
246
247
248
# File 'lib/roda/plugins/assets.rb', line 245

def self.load_dependencies(app, _opts = {})
  app.plugin :render
  app.plugin :caching
end