Class: SSHKit::Backend::Skipper
Instance Attribute Summary
Attributes inherited from Abstract
#host
Instance Method Summary
collapse
Methods inherited from Abstract
#as, #background, #capture, config, configure, #execute, #make, #rake, #run, #with, #within
Constructor Details
#initialize(&block) ⇒ Skipper
6
7
8
|
# File 'lib/sshkit/backends/skipper.rb', line 6
def initialize(&block)
@block = block
end
|
Instance Method Details
#execute_command(cmd) ⇒ Object
10
11
12
|
# File 'lib/sshkit/backends/skipper.rb', line 10
def execute_command(cmd)
warn "[SKIPPING] No Matching Host for #{cmd}"
end
|
#info(_messages) ⇒ Object
Also known as:
log, fatal, error, debug
17
18
19
|
# File 'lib/sshkit/backends/skipper.rb', line 17
def info(_messages)
end
|