module Pathutil::Helpers
class Pathutil
pathutil
0.4.1
# fnmatch?
def fnmatch?(matcher) matcher.is_a?(Regexp) ? !!(self =~ matcher) : \ File.fnmatch(self, matcher) end