Class: FoundationRailsHelper::Configuration

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfiguration

Returns a new instance of Configuration.



24
25
26
27
28
# File 'lib/foundation_rails_helper/configuration.rb', line 24

def initialize
  @button_class = 'success button'
  @ignored_flash_keys = []
  @auto_labels = true
end

Instance Attribute Details

#auto_labelsObject

Returns the value of attribute auto_labels.



22
23
24
# File 'lib/foundation_rails_helper/configuration.rb', line 22

def auto_labels
  @auto_labels
end

#button_classObject

Returns the value of attribute button_class.



20
21
22
# File 'lib/foundation_rails_helper/configuration.rb', line 20

def button_class
  @button_class
end

#ignored_flash_keysObject

Returns the value of attribute ignored_flash_keys.



21
22
23
# File 'lib/foundation_rails_helper/configuration.rb', line 21

def ignored_flash_keys
  @ignored_flash_keys
end