rake_dependencies 0.17.1.pre1 → 0.17.1.pre2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/lib/rake_dependencies/extractors.rb +6 -4
- data/lib/rake_dependencies/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ab5ffaf60883f5e2ccf18916a86c4118cd088854ef3aca293e907af4d9edb366
|
4
|
+
data.tar.gz: 995c446c215a5007840fab161a01b9e46ce457a0df99a78a119f6cf561a0e381
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1955c30a7ea2b6b43132509a1697f15fbbc457e5c1b0f0efbbcb3a980f0071d6c31ac1c5da15bf8100410ea664ebd27f7ccf1cc6ed7ab5221247765175b1c9a6
|
7
|
+
data.tar.gz: acb94ec8a5b76fafa0f2035526231800d262e840d464340b4a544bf241fae81fc619009d3350f0925242722bb9eedd5a863038fc8305a488662549698c1b8d9b
|
data/Gemfile.lock
CHANGED
@@ -26,10 +26,11 @@ module RakeDependencies
|
|
26
26
|
end
|
27
27
|
end
|
28
28
|
if @options[:rename_from] && @options[:rename_to]
|
29
|
-
FileUtils.mkdir_p(
|
29
|
+
FileUtils.mkdir_p(
|
30
|
+
File.dirname(File.join(@extract_path, @options[:rename_to])))
|
30
31
|
FileUtils.mv(
|
31
32
|
File.join(@extract_path, @options[:rename_from]),
|
32
|
-
@options[:rename_to])
|
33
|
+
File.join(@extract_path, @options[:rename_to]))
|
33
34
|
end
|
34
35
|
end
|
35
36
|
end
|
@@ -59,10 +60,11 @@ module RakeDependencies
|
|
59
60
|
end
|
60
61
|
end
|
61
62
|
if @options[:rename_from] && @options[:rename_to]
|
62
|
-
FileUtils.mkdir_p(
|
63
|
+
FileUtils.mkdir_p(
|
64
|
+
File.dirname(File.join(@extract_path, @options[:rename_to])))
|
63
65
|
FileUtils.mv(
|
64
66
|
File.join(@extract_path, @options[:rename_from]),
|
65
|
-
@options[:rename_to])
|
67
|
+
File.join(@extract_path, @options[:rename_to]))
|
66
68
|
end
|
67
69
|
end
|
68
70
|
end
|