Class: Hydra::RemoteTask
- Includes:
- Open3
- Defined in:
- lib/hydra/tasks.rb
Overview
Instance Attribute Summary
Attributes inherited from Task
#autosort, #config, #files, #listeners, #name, #serial, #verbose
Instance Method Summary collapse
-
#initialize(name) {|_self| ... } ⇒ RemoteTask
constructor
Create a new hydra remote task with the given name.
Methods inherited from Task
Constructor Details
#initialize(name) {|_self| ... } ⇒ RemoteTask
Create a new hydra remote task with the given name. The task will be named hydra:remote:<name>
238 239 240 241 242 243 244 245 246 247 |
# File 'lib/hydra/tasks.rb', line 238 def initialize(name) @name = name yield self if block_given? @config = find_config_file if @config define else task "hydra:remote:#{@name}" do ; end end end |