Class: Kissable::Configuration
- Inherits:
-
Object
- Object
- Kissable::Configuration
- Defined in:
- lib/kissable/configuration.rb
Instance Attribute Summary collapse
-
#domain ⇒ Object
Returns the value of attribute domain.
-
#logger ⇒ Object
Returns the value of attribute logger.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
Returns a new instance of Configuration.
7 8 9 10 |
# File 'lib/kissable/configuration.rb', line 7 def initialize @logger = Logger.new(STDOUT) @domain = nil end |
Instance Attribute Details
#domain ⇒ Object
Returns the value of attribute domain.
5 6 7 |
# File 'lib/kissable/configuration.rb', line 5 def domain @domain end |
#logger ⇒ Object
Returns the value of attribute logger.
5 6 7 |
# File 'lib/kissable/configuration.rb', line 5 def logger @logger end |