module Roda::RodaPlugins::BeforeHook
def self.configure(app)
so the before hooks are setup inside the rack app
Rebuild the rack app if the rack app already exists,
:nodoc:
private instance methods that are called in sorted order.
before processing is done by using _roda_before_*
Allows for plugins to configure the order in which
Internal before hook module, not for external use.
def self.configure(app) app.instance_exec do build_rack_app if @app end end