Module: SSHKit::Custom::DSL::ExecStatements

Included in:
SSHKit::Custom::DSL
Defined in:
lib/sshkit/custom/dsl/exec_statements.rb

Constant Summary collapse

EXEC_STATEMENTS =
[:execute, :make, :rake, :test, :capture, :upload!, :download!].freeze

Instance Method Summary collapse

Instance Method Details

#capture(*args, &block) ⇒ Object

@ dsl Delegates capture to the runner



23
# File 'lib/sshkit/custom/dsl/exec_statements.rb', line 23

create_delegator :capture

#download!(*args, &block) ⇒ Object

@ dsl Delegates download! to the runner



25
# File 'lib/sshkit/custom/dsl/exec_statements.rb', line 25

create_delegator :download!

#execute(*args, &block) ⇒ Object

@ dsl Delegates execute to the runner



19
# File 'lib/sshkit/custom/dsl/exec_statements.rb', line 19

create_delegator :execute

#make(*args, &block) ⇒ Object

@ dsl Delegates make to the runner



20
# File 'lib/sshkit/custom/dsl/exec_statements.rb', line 20

create_delegator :make

#rake(*args, &block) ⇒ Object

@ dsl Delegates rake to the runner



21
# File 'lib/sshkit/custom/dsl/exec_statements.rb', line 21

create_delegator :rake

#test(*args, &block) ⇒ Object

@ dsl Delegates test to the runner



22
# File 'lib/sshkit/custom/dsl/exec_statements.rb', line 22

create_delegator :test

#upload!(*args, &block) ⇒ Object

@ dsl Delegates upload! to the runner



24
# File 'lib/sshkit/custom/dsl/exec_statements.rb', line 24

create_delegator :upload!