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.



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

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

Instance Attribute Details

#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

Instance Method Details

#failed?Boolean

Returns:

  • (Boolean)


27
28
29
# File 'lib/circleci/cli/response/action.rb', line 27

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

#logObject



15
16
17
18
19
20
21
22
23
24
25
# File 'lib/circleci/cli/response/action.rb', line 15

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