Class: AutomateIt::ShellManager::WhichBase
- Inherits:
-
BaseDriver
- Object
- Common
- Plugin::Base
- Plugin::Driver
- BaseDriver
- AutomateIt::ShellManager::WhichBase
- Defined in:
- lib/automateit/shell_manager/which_base.rb
Overview
ShellManager::WhichBase
Provides abstract helper methods for other drivers implementing the which
.
Direct Known Subclasses
Constant Summary
Constants inherited from Plugin::Driver
Plugin::Driver::BASE_DRIVER_NAME
Constants included from Constants
Constants::HELPERS_DIR, Constants::INSTALL_DIR, Constants::PERROR, Constants::PEXEC, Constants::PNOTE, Constants::WARNING_BOILERPLATE
Instance Attribute Summary
Attributes inherited from Plugin::Driver
Attributes inherited from Common
Instance Method Summary collapse
-
#suitability(method, *args) ⇒ Object
:nodoc:.
-
#which!(command) ⇒ Object
See ShellManager#which!.
Methods inherited from BaseDriver
Methods inherited from Plugin::Driver
abstract_driver, #available?, base_driver, base_driver?, depends_on, inherited, manager_token, #setup
Methods inherited from Plugin::Base
Methods inherited from Common
#initialize, #log, #nitpick, #noop, #noop=, #noop?, #preview, #preview=, #preview?, #preview_for, #setup, #superuser?, #writing, #writing=, #writing?
Constructor Details
This class inherits a constructor from AutomateIt::Common
Instance Method Details
#suitability(method, *args) ⇒ Object
:nodoc:
7 8 9 10 |
# File 'lib/automateit/shell_manager/which_base.rb', line 7 def suitability(method, *args) # :nodoc: # Level must be higher than Portable return available? ? 2 : 0 end |
#which!(command) ⇒ Object
See ShellManager#which!
13 14 15 16 17 18 19 20 |
# File 'lib/automateit/shell_manager/which_base.rb', line 13 def which!(command) result = which(command) if result.nil? raise ArgumentError.new("command not found: #{command}") else true end end |