Class: Deliverable::Configuration
- Inherits:
-
Object
- Object
- Deliverable::Configuration
- Defined in:
- lib/deliverable.rb
Instance Attribute Summary collapse
-
#default_timeout ⇒ Object
Returns the value of attribute default_timeout.
-
#logger ⇒ Object
Returns the value of attribute logger.
-
#sender_domain ⇒ Object
Returns the value of attribute sender_domain.
-
#sender_email ⇒ Object
Returns the value of attribute sender_email.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
Returns a new instance of Configuration.
12 13 14 15 16 17 |
# File 'lib/deliverable.rb', line 12 def initialize @sender_email = nil @sender_domain = nil @logger = nil @default_timeout = 10 end |
Instance Attribute Details
#default_timeout ⇒ Object
Returns the value of attribute default_timeout.
10 11 12 |
# File 'lib/deliverable.rb', line 10 def default_timeout @default_timeout end |
#logger ⇒ Object
Returns the value of attribute logger.
10 11 12 |
# File 'lib/deliverable.rb', line 10 def logger @logger end |
#sender_domain ⇒ Object
Returns the value of attribute sender_domain.
10 11 12 |
# File 'lib/deliverable.rb', line 10 def sender_domain @sender_domain end |
#sender_email ⇒ Object
Returns the value of attribute sender_email.
10 11 12 |
# File 'lib/deliverable.rb', line 10 def sender_email @sender_email end |