Class: Bolt::Transport::Local

Inherits:
Simple show all
Defined in:
lib/bolt/transport/local.rb,
lib/bolt/transport/local/connection.rb

Defined Under Namespace

Classes: Connection

Instance Attribute Summary

Attributes inherited from Base

#logger

Instance Method Summary collapse

Methods inherited from Simple

#download, #run_command, #run_script, #run_task, #upload

Methods inherited from Base

#assert_batch_size_one, #batch_command, #batch_connected?, #batch_download, #batch_script, #batch_task, #batch_task_with, #batch_upload, #batches, #default_input_method, #download, #initialize, #provided_features, #run_command, #run_script, #run_task, #select_implementation, #select_interpreter, #unwrap_sensitive_args, #upload, #with_events

Constructor Details

This class inherits a constructor from Bolt::Transport::Base

Instance Method Details

#connected?(_target) ⇒ Boolean

Returns:

  • (Boolean)


9
10
11
# File 'lib/bolt/transport/local.rb', line 9

def connected?(_target)
  true
end

#with_connection(target) {|Connection.new(target)| ... } ⇒ Object

Yields:



13
14
15
16
17
18
19
# File 'lib/bolt/transport/local.rb', line 13

def with_connection(target)
  if target.transport_config['bundled-ruby']
    target.set_local_defaults
  end

  yield Connection.new(target)
end