Class: CreateGithubRelease::Assertions::GhCommandExists
- Inherits:
-
CreateGithubRelease::AssertionBase
- Object
- CreateGithubRelease::AssertionBase
- CreateGithubRelease::Assertions::GhCommandExists
- Defined in:
- lib/create_github_release/assertions/gh_command_exists.rb
Overview
Assert that the 'gh' command is in the path
Instance Attribute Summary
Attributes inherited from CreateGithubRelease::AssertionBase
Instance Method Summary collapse
-
#assert
Make sure that the 'gh' command is in the path.
Methods inherited from CreateGithubRelease::AssertionBase
#backtick_debug?, #error, #initialize, #print, #puts
Methods included from BacktickDebug
Constructor Details
This class inherits a constructor from CreateGithubRelease::AssertionBase
Instance Method Details
#assert
This method returns an undefined value.
Make sure that the 'gh' command is in the path
32 33 34 35 36 37 38 39 40 |
# File 'lib/create_github_release/assertions/gh_command_exists.rb', line 32 def assert print 'Checking that the gh command exists...' `which gh > /dev/null 2>&1` if $CHILD_STATUS.success? puts 'OK' else error 'The gh command was not found' end end |