Class: Hydra::GlobalTask

Inherits:
Task
  • Object
show all
Defined in:
lib/hydra/tasks.rb

Overview

A Hydra global task is a task that is run both locally and remotely.

For example:

Hydra::GlobalTask.new('db:reset')

Allows you to run:

rake hydra:db:reset

Then, db:reset will be run locally and on all remote workers. This makes it easy to setup your workers and run tasks all in a row.

For example:

rake hydra:db:reset hydra:factories hydra:tests

Assuming you setup hydra:db:reset and hydra:db:factories as global tasks and hydra:tests as a Hydra::TestTask for all your tests

Instance Attribute Summary

Attributes inherited from Task

#autosort, #config, #files, #listeners, #name, #verbose

Instance Method Summary collapse

Methods inherited from Task

#add_files, #find_config_file

Constructor Details

#initialize(name) ⇒ GlobalTask

Returns a new instance of GlobalTask.



177
178
179
180
# File 'lib/hydra/tasks.rb', line 177

def initialize(name)
  @name = name
  define
end