Class: CircleCI::CLI::Response::Action

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(hash) ⇒ Action

Returns a new instance of Action.



9
10
11
12
13
14
15
16
17
# File 'lib/circleci/cli/response/action.rb', line 9

def initialize(hash)
  @hash = hash
  @name = hash['name']
  @status = hash['status']
  @index = hash['index']
  @step = hash['step']
  @end_time = hash['end_time']
  @run_time_millis = hash['run_time_millis']
end

Instance Attribute Details

#end_timeObject (readonly)

Returns the value of attribute end_time.



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

def end_time
  @end_time
end

#indexObject (readonly)

Returns the value of attribute index.



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

def index
  @index
end

#nameObject (readonly)

Returns the value of attribute name.



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

def name
  @name
end

#run_time_millisObject (readonly)

Returns the value of attribute run_time_millis.



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

def run_time_millis
  @run_time_millis
end

#statusObject (readonly)

Returns the value of attribute status.



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

def status
  @status
end

#stepObject (readonly)

Returns the value of attribute step.



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

def step
  @step
end

Instance Method Details

#failed?Boolean

Returns:

  • (Boolean)


31
32
33
# File 'lib/circleci/cli/response/action.rb', line 31

def failed?
  @status == 'timedout' || @status == 'failed'
end

#logObject



19
20
21
22
23
24
25
26
27
28
29
# File 'lib/circleci/cli/response/action.rb', line 19

def log
  request(@hash['output_url'])
    .map do |r|
    r['message']
      .gsub("\r\n", "\n")
      .gsub("\e[A\r\e[2K", '')
      .scan(/.{1,120}/)
      .join("\n")
  end
    .join("\n")
end