module Roda::RodaPlugins::AutoForme

  1. lib/roda/plugins/autoforme.rb

Methods

Public Class

  1. configure
  2. load_dependencies

Public Class methods

configure(app, opts={}, &block)

If a block is given, automatically setup AutoForme using the options and block.

[show source]
   # File lib/roda/plugins/autoforme.rb
15 def self.configure(app, opts={}, &block)
16   app.instance_exec do
17     @autoforme_frameworks ||= {}
18     @autoforme_routes ||= {}
19     if block
20       autoforme(opts, &block)
21     end
22   end
23 end
load_dependencies(app, opts={}, &_)

Require the render plugin, since it is required.

[show source]
   # File lib/roda/plugins/autoforme.rb
 9 def self.load_dependencies(app, opts={}, &_)
10   app.plugin :render
11 end