Class: Errordeck::Configuration

Inherits:
Object
  • Object
show all
Defined in:
lib/errordeck/configuration.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfiguration

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

#distObject

Returns the value of attribute dist.



5
6
7
# File 'lib/errordeck/configuration.rb', line 5

def dist
  @dist
end

#environmentObject

Returns the value of attribute environment.



5
6
7
# File 'lib/errordeck/configuration.rb', line 5

def environment
  @environment
end

#levelObject

Returns the value of attribute level.



5
6
7
# File 'lib/errordeck/configuration.rb', line 5

def level
  @level
end

#project_idObject

Returns the value of attribute project_id.



5
6
7
# File 'lib/errordeck/configuration.rb', line 5

def project_id
  @project_id
end

#releaseObject

Returns the value of attribute release.



5
6
7
# File 'lib/errordeck/configuration.rb', line 5

def release
  @release
end

#server_nameObject

Returns the value of attribute server_name.



5
6
7
# File 'lib/errordeck/configuration.rb', line 5

def server_name
  @server_name
end

#tokenObject

Returns the value of attribute token.



5
6
7
# File 'lib/errordeck/configuration.rb', line 5

def token
  @token
end