Class: AppKit::Configuration
- Inherits:
-
Object
- Object
- AppKit::Configuration
- Defined in:
- lib/app_kit/configuration.rb
Instance Attribute Summary collapse
-
#application_title ⇒ Object
Returns the value of attribute application_title.
-
#authentication_enabled ⇒ Object
Returns the value of attribute authentication_enabled.
Instance Method Summary collapse
- #authentication_enabled? ⇒ Boolean
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
Returns a new instance of Configuration.
4 5 6 |
# File 'lib/app_kit/configuration.rb', line 4 def initialize @authentication_enabled = true end |
Instance Attribute Details
#application_title ⇒ Object
Returns the value of attribute application_title.
2 3 4 |
# File 'lib/app_kit/configuration.rb', line 2 def application_title @application_title end |
#authentication_enabled ⇒ Object
Returns the value of attribute authentication_enabled.
2 3 4 |
# File 'lib/app_kit/configuration.rb', line 2 def authentication_enabled @authentication_enabled end |
Instance Method Details
#authentication_enabled? ⇒ Boolean
8 9 10 |
# File 'lib/app_kit/configuration.rb', line 8 def authentication_enabled? authentication_enabled end |