Class: WerckerAPI::Run
- Inherits:
-
Object
- Object
- WerckerAPI::Run
- Defined in:
- lib/wercker_api/run.rb
Constant Summary collapse
- INDEX =
->(version) { "/api/#{version}/runs" }
- SHOW =
->(version, run_id) { "/api/#{version}/runs/#{run_id}" }
- TRIGGER =
->(version) { "/api/#{version}/runs" }
- ABORT =
->(version, run_id) { "/api/#{version}/runs/#{run_id}/abort" }
Instance Method Summary collapse
- #commit_hash ⇒ Object
- #created_at ⇒ Object
- #env_vars ⇒ Object
- #finished_at ⇒ Object
- #source_run ⇒ Object
Instance Method Details
#commit_hash ⇒ Object
41 42 43 |
# File 'lib/wercker_api/run.rb', line 41 def commit_hash commitHash end |
#created_at ⇒ Object
45 46 47 |
# File 'lib/wercker_api/run.rb', line 45 def created_at createdAt end |
#env_vars ⇒ Object
53 54 55 |
# File 'lib/wercker_api/run.rb', line 53 def env_vars envVars end |
#finished_at ⇒ Object
49 50 51 |
# File 'lib/wercker_api/run.rb', line 49 def finished_at finishedAt end |
#source_run ⇒ Object
37 38 39 |
# File 'lib/wercker_api/run.rb', line 37 def source_run sourceRun end |