Class: Alexa::Configuration
- Inherits:
-
Object
- Object
- Alexa::Configuration
- Defined in:
- lib/alexa/configuration.rb
Instance Attribute Summary collapse
-
#default_card_title ⇒ Object
Returns the value of attribute default_card_title.
-
#location_permission_type ⇒ Object
Returns the value of attribute location_permission_type.
-
#skill_ids ⇒ Object
Returns the value of attribute skill_ids.
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 |
# File 'lib/alexa/configuration.rb', line 5 def initialize @location_permission_type = nil @default_card_title = 'Card title' @skill_ids = [] end |
Instance Attribute Details
#default_card_title ⇒ Object
Returns the value of attribute default_card_title.
3 4 5 |
# File 'lib/alexa/configuration.rb', line 3 def default_card_title @default_card_title end |
#location_permission_type ⇒ Object
Returns the value of attribute location_permission_type.
3 4 5 |
# File 'lib/alexa/configuration.rb', line 3 def @location_permission_type end |
#skill_ids ⇒ Object
Returns the value of attribute skill_ids.
3 4 5 |
# File 'lib/alexa/configuration.rb', line 3 def skill_ids @skill_ids end |