Sha256: 2746653b3807f4182ddfb4a55346b31102ce43dbfba4ae2cfd3cf7d77109bda1
Contents?: true
Size: 789 Bytes
Versions: 2
Compression:
Stored size: 789 Bytes
Contents
=begin Copyright 2010-2017 Sarosys LLC <http://www.sarosys.com> This file is part of the Arachni Framework project and is subject to redistribution and commercial restrictions. Please see the Arachni Framework web site for more information on licensing and terms of use. =end module Arachni module Support # @author Tasos "Zapotek" Laskos <tasos.laskos@arachni-scanner.com> class Glob def self.to_regexp( glob ) escaped = Regexp.escape( glob ).gsub( '\*', '.*?' ) Regexp.new( "^#{escaped}$", Regexp::IGNORECASE ) end attr_reader :regexp def initialize( glob ) @regexp = self.class.to_regexp( glob ) end def =~( str ) !!(str =~ @regexp) end alias :matches? :=~ alias :match? :matches? end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
arachni-1.5.1 | lib/arachni/support/glob.rb |
arachni-1.5 | lib/arachni/support/glob.rb |