class Rake::Task
Public Instance Methods
execute(args = nil)
click to toggle source
# File lib/dogcatcher/ext/rake/task.rb, line 6 def execute(args = nil) original_execute(args) rescue Exception => ex notice = Dogcatcher.build_notice(ex) notice.notifier = 'rake' notice.action = name Dogcatcher.notify(notice) raise ex end
Also aliased as: original_execute