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