Class: GDK::Diagnostic::Golang

Inherits:
Base
  • Object
show all
Defined in:
lib/gdk/diagnostic/golang.rb

Constant Summary collapse

TITLE =
'Golang'

Instance Method Summary collapse

Methods inherited from Base

#message, #title

Instance Method Details

#detailObject



16
17
18
# File 'lib/gdk/diagnostic/golang.rb', line 16

def detail
  icu4c_issue_detail unless success?
end

#success?Boolean

Returns:

  • (Boolean)


8
9
10
11
12
13
14
# File 'lib/gdk/diagnostic/golang.rb', line 8

def success?
  # Let's return success if the gitlab-elasticsearch-indexer clone does
  # not exist.
  return true unless clone_exists?

  go_get_command.success?
end