module Ahnnotate::Refinement::PathnameGlob
Public Instance Methods
glob(pattern)
click to toggle source
# File lib/ahnnotate/refinement/pathname_glob.rb, line 6 def glob(pattern) Dir.glob(self.join(pattern)).map { |path| Pathname.new(path) } end