Class: GDK::Diagnostic::Golang
- Defined in:
- lib/gdk/diagnostic/golang.rb
Constant Summary collapse
- TITLE =
'Golang'
Instance Method Summary collapse
Methods inherited from Base
Instance Method Details
#detail ⇒ Object
16 17 18 |
# File 'lib/gdk/diagnostic/golang.rb', line 16 def detail icu4c_issue_detail unless success? end |
#success? ⇒ 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 |