Class: BootstrapLeather::Configuration
- Inherits:
-
Object
- Object
- BootstrapLeather::Configuration
- Defined in:
- lib/bootstrap_leather/configuration.rb
Overview
Configuration class
Instance Attribute Summary collapse
-
#application_description ⇒ Object
Returns the value of attribute application_description.
-
#application_keywords ⇒ Object
Returns the value of attribute application_keywords.
-
#application_logo ⇒ Object
Returns the value of attribute application_logo.
-
#application_path ⇒ Object
Returns the value of attribute application_path.
-
#application_title ⇒ Object
Returns the value of attribute application_title.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
Returns a new instance of Configuration.
19 20 21 22 23 24 25 26 |
# File 'lib/bootstrap_leather/configuration.rb', line 19 def initialize self.application_logo = '/assets/logo.svg' self.application_path = '/' self.application_title = 'Run the Generator, Config and Restart' self.application_description = 'Try it, very easy. `rails g '\ 'bootstrap_leather:install` is the generator command.' self.application_keywords = 'Then, fix, your, config, file' end |
Instance Attribute Details
#application_description ⇒ Object
Returns the value of attribute application_description.
16 17 18 |
# File 'lib/bootstrap_leather/configuration.rb', line 16 def application_description @application_description end |
#application_keywords ⇒ Object
Returns the value of attribute application_keywords.
16 17 18 |
# File 'lib/bootstrap_leather/configuration.rb', line 16 def application_keywords @application_keywords end |
#application_logo ⇒ Object
Returns the value of attribute application_logo.
16 17 18 |
# File 'lib/bootstrap_leather/configuration.rb', line 16 def application_logo @application_logo end |
#application_path ⇒ Object
Returns the value of attribute application_path.
16 17 18 |
# File 'lib/bootstrap_leather/configuration.rb', line 16 def application_path @application_path end |
#application_title ⇒ Object
Returns the value of attribute application_title.
16 17 18 |
# File 'lib/bootstrap_leather/configuration.rb', line 16 def application_title @application_title end |