# File lib/facet/kernel/require_all.rb, line 11
  def require_all( pat, *args )
    $LOAD_PATH.each do |path|
      fs = Dir[File.join(path,pat)]
      unless fs.empty? 
        fs.each { |f| require( f, *args ) }
        break;
      end
    end
  end