Class: Arbre::Form::Component::Group

Inherits:
HTML::Fieldset
  • Object
show all
Defined in:
lib/arbre/form/component/group.rb

Instance Method Summary collapse

Instance Method Details

#build(group_name: nil, **attributes) ⇒ Object



3
4
5
6
# File 'lib/arbre/form/component/group.rb', line 3

def build(group_name: nil, **attributes)
  super attributes
  legend group_name.to_s.humanize.titleize if group_name
end

#tag_nameObject



8
9
10
# File 'lib/arbre/form/component/group.rb', line 8

def tag_name
  'fieldset'
end