wixgem 0.22.0 → 0.23.0
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.
- checksums.yaml +4 -4
- data/lib/wixgem.rb +0 -3
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3cd8a09c8f431189cf928624d1d39f229b28db15
|
|
4
|
+
data.tar.gz: c9ee061ba4fd8c5c566634253ed9faec0f50c653
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 43cf4bc80a13c86a0f7ccdbaa86fdbb97eaad56fa41c28a07a0d66bb2fd4557a67c00bf7eee5706876bc4d142bccb52e6af664bc58e597cd4ecad7128380cd71
|
|
7
|
+
data.tar.gz: 264fca3e3e44bda446ed5e273d23ce4449e83ed139764b5dd0ee867f505735c647954da9757c3320e8f04b0ef46a3bb9c7c5aad59020370cf4ee29cbb38dc525
|
data/lib/wixgem.rb
CHANGED
|
@@ -216,12 +216,9 @@ class Wix
|
|
|
216
216
|
create_wxs_file(wxs_file, input, ext)
|
|
217
217
|
create_output(wxs_file, output_absolute_path)
|
|
218
218
|
ensure
|
|
219
|
-
puts "HERE"
|
|
220
219
|
if(@debug)
|
|
221
|
-
puts "HERE1"
|
|
222
220
|
FileUtils.cp("#{wxs_file}", "#{output_absolute_path}.wxs") if(File.exists?(wxs_file))
|
|
223
221
|
wix_cmds_file = "#{File.basename(wxs_file,'.wxs')}.wix_cmds"
|
|
224
|
-
puts "HERE2: #{wix_cmds_file}"
|
|
225
222
|
FileUtils.cp(wix_cmds_file, "#{File.dirname(output_absolute_path)}/#{wix_cmds_file}") if(File.exists?(wix_cmds_file))
|
|
226
223
|
end
|
|
227
224
|
end
|