module Sequel::Plugins::FormeSet

The forme_set plugin makes the model instance keep track of which form inputs have been added for it. It adds a forme_set(params['model_name']) method to handle the intake of submitted data from the form. For more complete control, it also adds a forme_parse method that returns a hash of information that can be used to modify and validate the object.

Constants

SKIP_FORMATTERS

Public Class Methods

apply(model) click to toggle source

Depend on the forme plugin, as forme_input already needs to be defined.

   # File lib/sequel/plugins/forme_set.rb
16 def self.apply(model)
17   model.plugin :forme
18 end