module Hoe::MercurialHelpers

def get_tip_info

## Get the 'tip' info and return it as a Hash
def get_tip_info
	data = read_command_output( 'hg', 'tip' )
	return YAML.load( data )
end