wixgem 0.63.0 → 0.64.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/example/example.msi +0 -0
- data/example/rakefile.rb +3 -3
- metadata +1 -2
- 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: 64606c985a2b5acc78b072ce7d2fc51df06078d2
|
|
4
|
+
data.tar.gz: 686826c5f70fe04f73e8dadfd49355a0ee6b22f1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 519c6ac58af86368b960d34a501fe49656eb111ce001c651a73d52af7c5fc125e767608826ee1e6555fd08d4db67a493936663f508bce1072b026a50359b6c38
|
|
7
|
+
data.tar.gz: 33659cd17e70a8d4a1fa3e9a1d91e48954aa56b2f57fd16245feec18868e5285efa7f27ccb04642a8c8e3eb0dfa62af7f5ba06c41a112dfe775231187df94af7
|
data/example/example.msi
CHANGED
|
Binary file
|
data/example/rakefile.rb
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
require 'wixgem'
|
|
2
2
|
|
|
3
|
-
Wixgem::Wix.install_path = 'C:\Development\dep\OpenSource\WixToolset\3.9'
|
|
4
|
-
|
|
3
|
+
#Wixgem::Wix.install_path = 'C:\Development\dep\OpenSource\WixToolset\3.9'
|
|
4
|
+
Wixgem::Wix.install_path = '<Path to the root directory of the wix toolset>'
|
|
5
5
|
|
|
6
6
|
task :create_installation_files do
|
|
7
7
|
FileUtils.mkpath('./install_files/directory')
|
|
@@ -20,7 +20,7 @@ desc "Generate an installation msi file"
|
|
|
20
20
|
task :installation => [:mergemodule] do
|
|
21
21
|
installation_files = Dir.glob('./example.msm')
|
|
22
22
|
Wixgem::Wix.make_installation("./example.msi",
|
|
23
|
-
{ upgrade_code: '{a62c35a7-6a6d-4392-822b-f6aca7eef88b}',
|
|
23
|
+
{ upgrade_code: '{a62c35a7-6a6d-4392-822b-f6aca7eef88b}',
|
|
24
24
|
files: installation_files }
|
|
25
25
|
)
|
|
26
26
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: wixgem
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.64.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kevin Marshall
|
|
@@ -76,7 +76,6 @@ files:
|
|
|
76
76
|
- LICENSE
|
|
77
77
|
- README.md
|
|
78
78
|
- example/example.msi
|
|
79
|
-
- example/example.msm
|
|
80
79
|
- example/install_files/directory/file2.txt
|
|
81
80
|
- example/install_files/file1.txt
|
|
82
81
|
- example/rakefile.rb
|
data/example/example.msm
DELETED
|
Binary file
|