murlsh 0.6.0 → 0.6.1
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/bin/murlsh +1 -1
- data/murlsh.gemspec +1 -1
- metadata +2 -2
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.6.
|
1
|
+
0.6.1
|
data/bin/murlsh
CHANGED
@@ -15,7 +15,7 @@ def cp_r_safe(sources, dest, options)
|
|
15
15
|
|
16
16
|
if File.directory?(source)
|
17
17
|
FileUtils.mkdir_p(new, options)
|
18
|
-
cp_r_safe(Dir.
|
18
|
+
cp_r_safe(Dir.entries(source).
|
19
19
|
reject { |f| %w{. ..}.include?(f) }.
|
20
20
|
collect { |f| File.join(source, f) }, new, options)
|
21
21
|
else
|
data/murlsh.gemspec
CHANGED