Class: Reactor::Plans::DeleteJob
- Defined in:
- lib/reactor/plans/delete_job.rb
Constant Summary
Constants inherited from CommonJob
Instance Method Summary collapse
-
#initialize(*args) ⇒ DeleteJob
constructor
A new instance of DeleteJob.
- #migrate! ⇒ Object
- #prepare! ⇒ Object
Methods inherited from CommonJob
Methods included from Prepared
Constructor Details
#initialize(*args) ⇒ DeleteJob
Returns a new instance of DeleteJob.
7 8 9 10 11 |
# File 'lib/reactor/plans/delete_job.rb', line 7 def initialize(*args) super() (name, x), = separate_arguments(*args) @name = name || [:name] end |