Method: Clash::Diff#dir_files
- Defined in:
- lib/clash/diff.rb
#dir_files(dir) ⇒ Object
Find all files in a given directory
63 64 65 |
# File 'lib/clash/diff.rb', line 63 def dir_files(dir) Find.find(dir).to_a.reject!{|f| File.directory?(f) } end |