def archive_files(source, glob_mask, destination) Dir.glob(File.join(source, glob_mask)) do |file| should_copy_file = true ...
Ruby Ruby Idioms
by jamesthigpen.myopenid.com,
March 12, 2009 19:53,
6 refactorings, tagged with ruby, idiomatic, idioms
This works, but I feel like...
Can you make this code more...