Class: Blender::Task::ShellOut
- Defined in:
- lib/blender/tasks/shell_out.rb
Instance Attribute Summary
Attributes inherited from Base
#command, #driver, #driver_opts, #hosts, #metadata, #name
Instance Method Summary collapse
-
#initialize(name, metadata = {}) ⇒ ShellOut
constructor
A new instance of ShellOut.
Methods inherited from Base
#add_metadata, #default_metadata, #driver_options, #execute, #ignore_failure, #members, #use_driver
Methods included from Discovery
#build_discovery, #old_search, #search, #search_with_config
Methods included from Utils::Refinements
Constructor Details
#initialize(name, metadata = {}) ⇒ ShellOut
Returns a new instance of ShellOut.
23 24 25 26 27 |
# File 'lib/blender/tasks/shell_out.rb', line 23 def initialize(name, ={}) super @command = name @members = ['localhost'] end |