Class: Blush::Configuration
- Inherits:
-
Object
- Object
- Blush::Configuration
- Defined in:
- lib/blush/configuration.rb
Overview
Class to store configuration for Blush
Instance Attribute Summary collapse
-
#accessor_name ⇒ Object
Returns the value of attribute accessor_name.
-
#helper_name ⇒ Object
Returns the value of attribute helper_name.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
Returns a new instance of Configuration.
8 9 10 11 |
# File 'lib/blush/configuration.rb', line 8 def initialize @accessor_name = :presenter @helper_name = :present end |
Instance Attribute Details
#accessor_name ⇒ Object
Returns the value of attribute accessor_name.
6 7 8 |
# File 'lib/blush/configuration.rb', line 6 def accessor_name @accessor_name end |
#helper_name ⇒ Object
Returns the value of attribute helper_name.
6 7 8 |
# File 'lib/blush/configuration.rb', line 6 def helper_name @helper_name end |