wixgem 0.65.0 → 0.66.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 +2 -2
- metadata +2 -4
- data/example/example.msi +0 -0
- data/example/example.msm +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: afaebdbb46da73a1f4c59778843531925277b5f3
|
|
4
|
+
data.tar.gz: f413613c8bb0dd16d830627df93110090fcb85ef
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8f14bb7ea14667795dcea1d69a4662ee050966f5d2fec159dd1a786ae56b8a5df1ab3172f74a964999466668f87b1a1c49c856ac7dbc10f67d43f80865508b60
|
|
7
|
+
data.tar.gz: c82ab664e399cbd331cb214872a0f4e93b85de4d8fdd1f90c7af88ee64d97d8c07b8681892b536dfb418464d5ea167a8ffdad90466f72e363497771b32780f97
|
data/lib/wixgem.rb
CHANGED
|
@@ -298,10 +298,10 @@ class Wix
|
|
|
298
298
|
|
|
299
299
|
filename = wxs_file
|
|
300
300
|
if(install_files.index(file) == 0)
|
|
301
|
-
execute_heat(input, "file \"#{windows_path}\" #{template_option} -cg InstallionFiles -gg -nologo -srd -o \"#{filename}\"")
|
|
301
|
+
execute_heat(input, "file \"#{windows_path}\" -v #{template_option} -cg InstallionFiles -gg -nologo -srd -o \"#{filename}\"")
|
|
302
302
|
else
|
|
303
303
|
filename = File.basename(wxs_file).gsub('.wxs', "-#{wxs_files.length}.wxs")
|
|
304
|
-
execute_heat(input, "file \"#{windows_path}\" -template fragment -gg -nologo -srd -o \"#{filename}\"")
|
|
304
|
+
execute_heat(input, "file \"#{windows_path}\" -v -template fragment -gg -nologo -srd -o \"#{filename}\"")
|
|
305
305
|
wxs_files[file] = filename
|
|
306
306
|
end
|
|
307
307
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: wixgem
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.66.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kevin Marshall
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-
|
|
11
|
+
date: 2015-12-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -103,8 +103,6 @@ extra_rdoc_files: []
|
|
|
103
103
|
files:
|
|
104
104
|
- LICENSE
|
|
105
105
|
- README.md
|
|
106
|
-
- example/example.msi
|
|
107
|
-
- example/example.msm
|
|
108
106
|
- example/install_files/directory/file2.txt
|
|
109
107
|
- example/install_files/file1.txt
|
|
110
108
|
- example/rakefile.rb
|
data/example/example.msi
DELETED
|
Binary file
|
data/example/example.msm
DELETED
|
Binary file
|