class Thor::Runner
def self.thor_root_glob
def self.thor_root_glob # On Windows thor_root will be something like this: # # C:\Documents and Settings\james\.thor # # If we don't #gsub the \ character, Dir.glob will fail. Dir["#{thor_root.gsub(/\\/, '/')}/**/*"] end