module Roda::RodaPlugins

def self.register_plugin(name, mod)

Roda::RodaPlugins.register_plugin(:plugin_name, PluginModule)

with a symbol. Should be used by plugin files. Example:
Register the given plugin with Roda, so that it can be loaded using #plugin
def self.register_plugin(name, mod)
  @plugins[name] = mod
end