module Roda::RodaPlugins::Forme

Constants

InstanceMethods

This is the module used to add the Forme integration to ERB templates, with optional support for rack_csrf for CSRF handling.

Public Class Methods

load_dependencies(app) click to toggle source

Require the render plugin, since forme template integration only makes sense with it.

   # File lib/roda/plugins/forme.rb
10 def self.load_dependencies(app)
11   app.plugin :render
12 end