Class: Errordeck::Configuration
- Inherits:
-
Object
- Object
- Errordeck::Configuration
- Defined in:
- lib/errordeck/configuration.rb
Instance Attribute Summary collapse
-
#dist ⇒ Object
Returns the value of attribute dist.
-
#environment ⇒ Object
Returns the value of attribute environment.
-
#level ⇒ Object
Returns the value of attribute level.
-
#project_id ⇒ Object
Returns the value of attribute project_id.
-
#release ⇒ Object
Returns the value of attribute release.
-
#server_name ⇒ Object
Returns the value of attribute server_name.
-
#token ⇒ Object
Returns the value of attribute token.
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 11 12 13 14 15 |
# File 'lib/errordeck/configuration.rb', line 7 def initialize @token = nil @project_id = nil @environment = nil @release = nil @dist = nil @level = nil @server_name = nil end |
Instance Attribute Details
#dist ⇒ Object
Returns the value of attribute dist.
5 6 7 |
# File 'lib/errordeck/configuration.rb', line 5 def dist @dist end |
#environment ⇒ Object
Returns the value of attribute environment.
5 6 7 |
# File 'lib/errordeck/configuration.rb', line 5 def environment @environment end |
#level ⇒ Object
Returns the value of attribute level.
5 6 7 |
# File 'lib/errordeck/configuration.rb', line 5 def level @level end |
#project_id ⇒ Object
Returns the value of attribute project_id.
5 6 7 |
# File 'lib/errordeck/configuration.rb', line 5 def project_id @project_id end |
#release ⇒ Object
Returns the value of attribute release.
5 6 7 |
# File 'lib/errordeck/configuration.rb', line 5 def release @release end |
#server_name ⇒ Object
Returns the value of attribute server_name.
5 6 7 |
# File 'lib/errordeck/configuration.rb', line 5 def server_name @server_name end |
#token ⇒ Object
Returns the value of attribute token.
5 6 7 |
# File 'lib/errordeck/configuration.rb', line 5 def token @token end |