# File lib_doc/rucy/access.rb, line 245
    def new(*args)
      access = RequestPathAllowAccessFilter.new
      NARGS.times do
        addr_pat = args.shift
        if (addr_pat && ! addr_pat.source.empty?) then
          access.add_allow_path(addr_pat)
        end
      end
      access
    end