Type:
Class

######################################################################### A Task is the basic unit of work in a Rakefile. Tasks have associated actions (possibly more than one) and a list of prerequisites. When invoked, a task will first ensure that all of its prerequisites have an opportunity to run and then it will execute its own actions.

Tasks are not usually created directly using the new method, but rather use the file and task convenience methods.

[]

[](task_name) Class Public methods Return a task with the given name. If the

2015-04-30 18:20:32
scope_name

scope_name(scope, task_name) Class Public methods Apply the scope to the task

2015-04-30 18:33:05
sources

sources() Instance Public methods

2015-04-30 20:00:44
clear

clear() Class Public methods Clear the task list. This cause rake to immediately

2015-04-30 18:22:05
clear_actions

clear_actions() Instance Public methods Clear the existing actions on a rake

2015-04-30 19:00:01
execute

execute(args=nil) Instance Public methods Execute the actions associated with

2015-04-30 19:19:27
source

source() Instance Public methods First source from a rule (nil if no sources)

2015-04-30 19:58:18
clear 2

clear() Instance Public methods Clear the existing prerequisites and actions

2015-04-30 18:57:22
clear_comments

clear_comments() Instance Public methods Clear the existing comments on a rake

2015-04-30 19:01:23
invoke

invoke(*args) Instance Public methods Invoke the task if it is needed. Prerequisites

2015-04-30 19:36:22