class Rake::Task

Public Instance Methods

execute(args=nil) click to toggle source
# File lib/xp5k/rake/task.rb, line 6
def execute(args=nil)
  timer = XP5K::Rake::Timer.new(name)
  puts "--> Execute task #{name}"
  rake_execute(args)
  timer.stop
end
Also aliased as: rake_execute
rake_execute(args=nil)
Alias for: execute