Method: CF::Run.final_output
- Defined in:
- lib/cf/run.rb
.final_output(title) ⇒ Object
128 129 130 131 132 |
# File 'lib/cf/run.rb', line 128 def self.final_output(title) resp = get("/runs/#{CF.account_name}/#{title.downcase}/output.json") @errors = resp['error']['message'] if resp['code'] != 200 return resp['output'] end |