module Hoe::RakeHelpers

def error_message( msg, details='' )

## (white on red).
## Output the specified msg as an ANSI-colored error message
def error_message( msg, details='' )
	$stderr.puts colorize( 'bold', 'white', 'on_red' ) { msg } + details
end