Class: BootstrapForm::Configuration

Inherits:
Object
  • Object
show all
Defined in:
lib/bootstrap_form/configuration.rb

Instance Method Summary collapse

Instance Method Details

#default_form_attributesObject



16
17
18
19
20
# File 'lib/bootstrap_form/configuration.rb', line 16

def default_form_attributes
  return @default_form_attributes if defined? @default_form_attributes

  {}
end

#default_form_attributes=(attributes) ⇒ Object



5
6
7
8
9
10
11
12
13
14
# File 'lib/bootstrap_form/configuration.rb', line 5

def default_form_attributes=(attributes)
  case attributes
  when nil
    @default_form_attributes = {}
  when Hash
    @default_form_attributes = attributes
  else
    raise ArgumentError, "Unsupported default_form_attributes #{attributes.inspect}"
  end
end