Method: Rake::Task#reenable

Defined in:
lib/rake/task.rb

#reenableObject

Reenable the task, allowing its tasks to be executed if the task is invoked again.



147
148
149
150
# File 'lib/rake/task.rb', line 147

def reenable
  @already_invoked = false
  @invocation_exception = nil
end