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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Rake::Task[“build”].execute

A

This always executes the task, but it doesn’t execute its dependencies.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly