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.



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

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

Instance Attribute Details

#statusObject (readonly)

Returns the value of attribute status.



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

def status
  @status
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



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

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