Method: Formotion::Form#build_section

Defined in:
lib/formotion/form/form.rb

#build_section(&block) ⇒ Object

Use this as a DSL for adding sections EX end



68
69
70
71
72
# File 'lib/formotion/form/form.rb', line 68

def build_section(&block)
  section = create_section
  block.call(section)
  section
end