Class: Kanoah::Configuration
- Inherits:
-
Object
- Object
- Kanoah::Configuration
- Defined in:
- lib/configuration.rb
Instance Attribute Summary collapse
-
#base_url ⇒ Object
Returns the value of attribute base_url.
-
#environment ⇒ Object
Returns the value of attribute environment.
-
#password ⇒ Object
Returns the value of attribute password.
-
#project_id ⇒ Object
Returns the value of attribute project_id.
-
#test_run_id ⇒ Object
Returns the value of attribute test_run_id.
-
#username ⇒ Object
Returns the value of attribute username.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
Returns a new instance of Configuration.
14 15 16 17 18 19 20 21 |
# File 'lib/configuration.rb', line 14 def initialize @base_url = nil @test_run_id = nil @project_id = nil @environment = nil @username = nil @password = nil end |
Instance Attribute Details
#base_url ⇒ Object
Returns the value of attribute base_url.
12 13 14 |
# File 'lib/configuration.rb', line 12 def base_url @base_url end |
#environment ⇒ Object
Returns the value of attribute environment.
12 13 14 |
# File 'lib/configuration.rb', line 12 def environment @environment end |
#password ⇒ Object
Returns the value of attribute password.
12 13 14 |
# File 'lib/configuration.rb', line 12 def password @password end |
#project_id ⇒ Object
Returns the value of attribute project_id.
12 13 14 |
# File 'lib/configuration.rb', line 12 def project_id @project_id end |
#test_run_id ⇒ Object
Returns the value of attribute test_run_id.
12 13 14 |
# File 'lib/configuration.rb', line 12 def test_run_id @test_run_id end |
#username ⇒ Object
Returns the value of attribute username.
12 13 14 |
# File 'lib/configuration.rb', line 12 def username @username end |