Rake Flashcards
1
Q
Rake::Task[“build”].invoke
A
Executes the dependencies, but it only executes the task if it has not already been invoked
2
Q
Rake::Task[“build”].execute
A
This always executes the task, but it doesn’t execute its dependencies.
3
Q
Rake::Task[“build”].reenable
A
Resets the task’s already_invoked state, allowing the task to then be executed again, dependencies and all.