class Utils::Finder

def discover_roots(roots)

def discover_roots(roots)
  roots ||= []
  roots.inject([]) { |rs, r| rs.concat Dir[r] }
end