Class: CircleCI::CLI::Response::Step

Inherits:
Object
  • Object
show all
Defined in:
lib/circleci/cli/response/step.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(type, hash) ⇒ Step

Returns a new instance of Step.



9
10
11
12
13
# File 'lib/circleci/cli/response/step.rb', line 9

def initialize(type, hash)
  @type = type
  @name = hash['name']
  @hash = hash
end

Instance Attribute Details

#nameObject (readonly)

Returns the value of attribute name.



7
8
9
# File 'lib/circleci/cli/response/step.rb', line 7

def name
  @name
end

#typeObject (readonly)

Returns the value of attribute type.



7
8
9
# File 'lib/circleci/cli/response/step.rb', line 7

def type
  @type
end

Instance Method Details

#actionsObject



15
16
17
# File 'lib/circleci/cli/response/step.rb', line 15

def actions
  @hash['actions'].map { |a| Action.new(a) }
end

#statusObject



19
20
21
22
23
24
# File 'lib/circleci/cli/response/step.rb', line 19

def status
  return 'running' if actions.any? { |action| action.end_time.nil? }
  return 'failed' if actions.any?(&:failed?)

  'success'
end