module RakeExceptionHook

Constants

VERSION

Public Class Methods

except(&block) click to toggle source
# File lib/rake_exception_hook.rb, line 15
def self.except &block
    @@except_block = block
end
except_hook() click to toggle source
# File lib/rake_exception_hook.rb, line 27
def self.except_hook
    @@except_block
end
finish(&block) click to toggle source
# File lib/rake_exception_hook.rb, line 11
def self.finish &block
    @@finish_block = block 
end
finish_hook() click to toggle source
# File lib/rake_exception_hook.rb, line 23
def self.finish_hook
    @@finish_block
end
start(&block) click to toggle source
# File lib/rake_exception_hook.rb, line 7
def self.start &block
    @@start_block = block
end
start_hook() click to toggle source
# File lib/rake_exception_hook.rb, line 19
def self.start_hook
    @@start_block
end