# File lib/gauntlet_parsetree.rb, line 99
  def run name
    warn name
    Dir["**/*.rb"].sort.each do |path|
      next if path =~ /gemspec.rb/ # HACK
      result = data[name][path]
      next if result == true || Symbol === result
      process path, name
    end

    if (self.data[name].empty? or
        self.data[name].values.all? { |v| v == true }) then
      warn "  ALL GOOD!"
      self.data[name] = true
      self.dirty = true
    end
  end