Class: FoundationRailsHelper::Configuration
- Inherits:
-
Object
- Object
- FoundationRailsHelper::Configuration
- Defined in:
- lib/foundation_rails_helper/configuration.rb
Instance Attribute Summary collapse
-
#auto_labels ⇒ Object
Returns the value of attribute auto_labels.
-
#button_class ⇒ Object
Returns the value of attribute button_class.
-
#ignored_flash_keys ⇒ Object
Returns the value of attribute ignored_flash_keys.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
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_labels ⇒ Object
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_class ⇒ Object
Returns the value of attribute button_class.
20 21 22 |
# File 'lib/foundation_rails_helper/configuration.rb', line 20 def @button_class end |
#ignored_flash_keys ⇒ Object
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 |