wixgem 0.20.0 → 0.22.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 +13 -8
- 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: 16ac21d77c2273212ac109ccdec62839abfea07e
|
4
|
+
data.tar.gz: d61ff5fa1a36275946b453483a5c2758ebf3f689
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dd254bec128e6056246fefd745095aabb9a00239de97b4376f0c47b4c5534f62ed898317aaed8f099505a4ef047653b0665dc51ef63a4653268f84fa69ea92b3
|
7
|
+
data.tar.gz: 38b361dd924ba2bacacebab0f87fafa0351b557a2975b433370cdff66693d9c663abfccd9947f59fc56440da2eacb1e001ebe72aa762a9e8d8565dd76cfea3ad
|
data/lib/wixgem.rb
CHANGED
@@ -212,14 +212,19 @@ class Wix
|
|
212
212
|
|
213
213
|
wxs_file = "#{basename}.wxs"
|
214
214
|
Dir.chdir(dir) do |current_dir|
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
215
|
+
begin
|
216
|
+
create_wxs_file(wxs_file, input, ext)
|
217
|
+
create_output(wxs_file, output_absolute_path)
|
218
|
+
ensure
|
219
|
+
puts "HERE"
|
220
|
+
if(@debug)
|
221
|
+
puts "HERE1"
|
222
|
+
FileUtils.cp("#{wxs_file}", "#{output_absolute_path}.wxs") if(File.exists?(wxs_file))
|
223
|
+
wix_cmds_file = "#{File.basename(wxs_file,'.wxs')}.wix_cmds"
|
224
|
+
puts "HERE2: #{wix_cmds_file}"
|
225
|
+
FileUtils.cp(wix_cmds_file, "#{File.dirname(output_absolute_path)}/#{wix_cmds_file}") if(File.exists?(wix_cmds_file))
|
226
|
+
end
|
227
|
+
end
|
223
228
|
end
|
224
229
|
end
|
225
230
|
pdb_file = output_absolute_path.gsub(ext,'.wixpdb')
|