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.

clear_comments
  • References/Ruby on Rails/Ruby/Classes/Rake/Rake::Task

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

2025-01-10 15:47:30
invoke
  • References/Ruby on Rails/Ruby/Classes/Rake/Rake::Task

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

2025-01-10 15:47:30
reenable
  • References/Ruby on Rails/Ruby/Classes/Rake/Rake::Task

reenable() Instance Public methods Reenable the task, allowing its tasks to

2025-01-10 15:47:30
new
  • References/Ruby on Rails/Ruby/Classes/Rake/Rake::Task

new(task_name, app) Class Public methods Create a task named task_name

2025-01-10 15:47:30
investigation
  • References/Ruby on Rails/Ruby/Classes/Rake/Rake::Task

investigation() Instance Public methods Return a string describing the internal

2025-01-10 15:47:30
define_task
  • References/Ruby on Rails/Ruby/Classes/Rake/Rake::Task

define_task(*args, &block) Class Public methods Define a task given args

2025-01-10 15:47:30
add_description
  • References/Ruby on Rails/Ruby/Classes/Rake/Rake::Task

add_description(description) Instance Public methods Add a description to the

2025-01-10 15:47:30
clear_prerequisites
  • References/Ruby on Rails/Ruby/Classes/Rake/Rake::Task

clear_prerequisites() Instance Public methods Clear the existing prerequisites

2025-01-10 15:47:30
arg_names
  • References/Ruby on Rails/Ruby/Classes/Rake/Rake::Task

arg_names() Instance Public methods Name of arguments for this task.

2025-01-10 15:47:30
set_arg_names
  • References/Ruby on Rails/Ruby/Classes/Rake/Rake::Task

set_arg_names(args) Instance Public methods

2025-01-10 15:47:30