class GoApiClient::Domain::Stage
Attributes
approved_by[RW]
Tags
counter[RW]
Self attributes
id[RW]
Tags
jobs[RW]
Tags
name[RW]
Self attributes
parsed_jobs[RW]
Parsed object
parsed_pipeline[RW]
Parsed object
pipeline_counter[RW]
Pipeline
tag
pipeline_label[RW]
Pipeline
tag
pipeline_name[RW]
Pipeline
tag
pipeline_uri[RW]
Pipeline
tag
result[RW]
Tags
self_uri[RW]
Tags
state[RW]
Tags
updated[RW]
Tags
Public Class Methods
new(attributes={})
click to toggle source
Calls superclass method
GoApiClient::AttributeHelper::new
# File lib/go_api_client/domain/stage.rb, line 14 def initialize(attributes={}) super(attributes) end
Public Instance Methods
failed?()
click to toggle source
# File lib/go_api_client/domain/stage.rb, line 18 def failed? 'Failed' == @result end
passed?()
click to toggle source
# File lib/go_api_client/domain/stage.rb, line 22 def passed? !failed? end