Method: CF::Run.final_output

Defined in:
lib/cf/run.rb

.final_output(title) ⇒ Object

Returns Final Output of production Run

Usage Example:

CF::Run.final_output("run_title")


128
129
130
131
132
# File 'lib/cf/run.rb', line 128

def self.final_output(title)
  resp = get("/runs/#{CF.}/#{title.downcase}/output.json")
  @errors = resp['error']['message'] if resp['code'] != 200
  return resp['output']
end