Class: CtlBaseUi::Configuration
- Inherits:
-
Object
- Object
- CtlBaseUi::Configuration
- Defined in:
- lib/ctl_base_ui/configuration.rb
Instance Attribute Summary collapse
-
#additional_entries ⇒ Object
Returns the value of attribute additional_entries.
-
#additional_stylesheets ⇒ Object
Returns the value of attribute additional_stylesheets.
-
#app_name ⇒ Object
Returns the value of attribute app_name.
-
#partials_path ⇒ Object
Returns the value of attribute partials_path.
-
#view_helpers ⇒ Object
Returns the value of attribute view_helpers.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
Returns a new instance of Configuration.
5 6 7 8 9 10 11 |
# File 'lib/ctl_base_ui/configuration.rb', line 5 def initialize @additional_entries = [] @view_helpers = [] @partials_path = '/styleguide/' @app_name = 'My App' @additional_stylesheets = [] end |
Instance Attribute Details
#additional_entries ⇒ Object
Returns the value of attribute additional_entries.
3 4 5 |
# File 'lib/ctl_base_ui/configuration.rb', line 3 def additional_entries @additional_entries end |
#additional_stylesheets ⇒ Object
Returns the value of attribute additional_stylesheets.
3 4 5 |
# File 'lib/ctl_base_ui/configuration.rb', line 3 def additional_stylesheets @additional_stylesheets end |
#app_name ⇒ Object
Returns the value of attribute app_name.
3 4 5 |
# File 'lib/ctl_base_ui/configuration.rb', line 3 def app_name @app_name end |
#partials_path ⇒ Object
Returns the value of attribute partials_path.
3 4 5 |
# File 'lib/ctl_base_ui/configuration.rb', line 3 def partials_path @partials_path end |
#view_helpers ⇒ Object
Returns the value of attribute view_helpers.
3 4 5 |
# File 'lib/ctl_base_ui/configuration.rb', line 3 def view_helpers @view_helpers end |