jsuder/holepicker

View on GitHub
lib/holepicker/file_finder.rb

Summary

Maintainability
A
0 mins
Test Coverage
module HolePicker
  module FileFinder
    def self.find_files(path, options = "")
      %x(find -L #{path} #{options}).lines.map(&:strip)
    end
  end
end