Class: Doozer::Task

Inherits:
Object show all
Defined in:
lib/doozer/task.rb

Instance Method Summary collapse

Constructor Details

#initialize(args = nil) ⇒ Task

Returns a new instance of Task.



4
5
6
# File 'lib/doozer/task.rb', line 4

def initialize(args=nil)
  @args = args
end

Instance Method Details

#helpObject



8
# File 'lib/doozer/task.rb', line 8

def help; end

#nameObject



7
# File 'lib/doozer/task.rb', line 7

def name; return self.class.to_s end

#runObject



9
# File 'lib/doozer/task.rb', line 9

def run; end