commandable 0.2.3 → 0.3.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -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