commandable 0.2.3 → 0.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,11 +0,0 @@
1
- require 'fileutils'
2
-
3
- module FileUtils
4
- # Monkeypatch FileUtils really annoying lack of proper directory copying
5
- def copy_dir(source, dest)
6
- files = Dir.glob("#{source}/**")
7
- mkdir_p dest
8
- cp_r files, dest
9
- end
10
- module_function :copy_dir
11
- end