module Hoe::MercurialHelpers

def get_uncommitted_files

## Return the list of files which are not of status 'clean'
def get_uncommitted_files
	list = read_command_output( 'hg', 'status', '-n', '--color', 'never' )
	list = list.split( /\n/ )
	trace "Changed files: %p" % [ list ]
	return list
end