module Tins::Find
def find(*paths, &block) # :yield: path
See the +Find+ module documentation for an example.
listed as arguments, then recursively on their subdirectories, and so on.
Calls the associated block with the name of every path and directory
def find(*paths, &block) # :yield: path opts = Hash === paths.last ? paths.pop : {} Finder.new(opts).find(*paths, &block) end
def prune
See the +Find+ module documentation for an example.
Find::find.
recursively entered. Meaningful only within the block associated with
entry. If the current path is a directory, that directory will not be
Skips the current path or directory, restarting the loop with the next
def prune throw :prune end