module Reform::Form::Module

Include this in every module that gets further included.

Public Class Methods

included(base) click to toggle source

DISCUSS: could this be part of Declarative?

# File lib/reform/form/module.rb, line 4
def self.included(base)
  base.extend ClassMethods
  base.extend Declarative::Heritage::DSL # ::heritage
  # base.extend Declarative::Heritage::Included # ::included
  base.extend Included
end