Class: AutomateIt::ShellManager::Link
- Inherits:
-
BaseLink
- Object
- Common
- Plugin::Base
- Plugin::Driver
- BaseDriver
- BaseLink
- AutomateIt::ShellManager::Link
- Defined in:
- lib/automateit/shell_manager/link.rb
Overview
ShellManager::Link
A ShellManager driver providing access to the hard link ln
command found on Unix-like systems.
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
-
#ln(*args) ⇒ Object
See ShellManager#ln.
-
#provides_link? ⇒ Boolean
See ShellManager#provides_link?.
-
#suitability(method, *args) ⇒ Object
:nodoc:.
Methods inherited from BaseLink
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
#ln(*args) ⇒ Object
See ShellManager#ln
21 22 23 |
# File 'lib/automateit/shell_manager/link.rb', line 21 def ln(*args) _ln(*args) end |
#provides_link? ⇒ Boolean
See ShellManager#provides_link?
16 17 18 |
# File 'lib/automateit/shell_manager/link.rb', line 16 def provides_link? available? ? true : false end |
#suitability(method, *args) ⇒ Object
:nodoc:
10 11 12 13 |
# File 'lib/automateit/shell_manager/link.rb', line 10 def suitability(method, *args) # :nodoc: # Level must be higher than Portable return available? ? 2 : 0 end |