Exception: Ace::Review::Errors::GhCliNotInstalledError
- Defined in:
- lib/ace/review/errors.rb
Overview
Raised when gh CLI is not installed
Instance Method Summary collapse
-
#initialize ⇒ GhCliNotInstalledError
constructor
A new instance of GhCliNotInstalledError.
Constructor Details
#initialize ⇒ GhCliNotInstalledError
Returns a new instance of GhCliNotInstalledError.
37 38 39 40 41 42 43 44 45 |
# File 'lib/ace/review/errors.rb', line 37 def initialize = "GitHub CLI (gh) is not installed.\n" += "Install with:\n" += " macOS: brew install gh\n" += " Linux: See https://cli.github.com/manual/installation\n" += " Windows: See https://cli.github.com/manual/installation" super() end |