module Hoe::MercurialHelpers

def get_unknown_files

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