module Hoe::RakeHelpers
def humanize_file_list( list, indent=FILE_INDENT )
def humanize_file_list( list, indent=FILE_INDENT ) listtext = list[0..5].join( "\n#{indent}" ) if list.length > 5 listtext << " (and %d other/s)" % [ list.length - 5 ] end return listtext end