module Thor::Util

def thor_root_glob


If we don't #gsub the \ character, Dir.glob will fail.

C:\Documents and Settings\james\.thor

like this:
Returns the files in the thor root. On Windows thor_root will be something
def thor_root_glob
  files = Dir["#{escape_globs(thor_root)}/*"]
  files.map! do |file|
    File.directory?(file) ? File.join(file, 'main.thor') : file
  end
end