Class: Rake::Task

Inherits:
Object
  • Object
show all
Defined in:
lib/rote/rotetasks.rb

Overview

:nodoc: all

Instance Method Summary collapse

Instance Method Details

#executeObject



332
333
334
335
# File 'lib/rote/rotetasks.rb', line 332

def execute
  @executed = true
  pre_rote_execute
end

#executed?Boolean

Returns:

  • (Boolean)


328
329
330
# File 'lib/rote/rotetasks.rb', line 328

def executed?
  @executed
end

#pre_rote_executeObject



331
# File 'lib/rote/rotetasks.rb', line 331

alias :pre_rote_execute :execute

#resetObject



324
325
326
327
# File 'lib/rote/rotetasks.rb', line 324

def reset
  @already_invoked = false
  @executed = false
end