wixgem 0.36.0 → 0.37.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/README.md +2 -3
- data/lib/wixgem.rb +3 -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: 47ef7554d4e1d1d816c7161eddb90c0cc8efc435
|
|
4
|
+
data.tar.gz: 77fced7ea571cdeaa0735693e9668e91c14627b4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0cec8674e90cb6746de6338d4c04496639178f936e065d55dafa7fd8c8d46c49474633b8ad2531c0e3fc6ea831b881546fa15f434f281a95114b701acddf5d2e
|
|
7
|
+
data.tar.gz: 5df9d716aae5d5d5cc20c593d6b1f748db6705877c888e9bd606b9366ed4ed60b383504cdee12021808d6daa560cb7c5b6aaecf203c51e9583c61ea6b9e4719e
|
data/README.md
CHANGED
|
@@ -55,9 +55,8 @@ small set of optional arguments allowing the developer to customize the generate
|
|
|
55
55
|
installations of the product before installing the product.
|
|
56
56
|
* **all_users**: String value perUser or perMachine. The default is perUser.
|
|
57
57
|
* **debug**: Boolean value. If debug is true the Product's wxs file and a log file are copied
|
|
58
|
-
to the same directory as the output msi file. This can help trouble
|
|
59
|
-
installation.
|
|
60
|
-
|
|
58
|
+
to the same directory as the output msi file. This can help trouble shoot the
|
|
59
|
+
installation.
|
|
61
60
|
|
|
62
61
|
## License
|
|
63
62
|
Copyright 2013-2014 Kevin Marshall
|
data/lib/wixgem.rb
CHANGED
|
@@ -31,12 +31,12 @@ class Wix
|
|
|
31
31
|
|
|
32
32
|
def self.make_mergemodule(output_file, input)
|
|
33
33
|
gem_dir = File.dirname(__FILE__)
|
|
34
|
-
apply_wix_template(output_file, input
|
|
34
|
+
apply_wix_template(output_file, input)
|
|
35
35
|
end
|
|
36
36
|
|
|
37
37
|
def self.make_installation(output_file, input)
|
|
38
38
|
gem_dir = File.dirname(__FILE__)
|
|
39
|
-
apply_wix_template(output_file, input
|
|
39
|
+
apply_wix_template(output_file, input)
|
|
40
40
|
end
|
|
41
41
|
|
|
42
42
|
private
|
|
@@ -253,7 +253,7 @@ class Wix
|
|
|
253
253
|
end
|
|
254
254
|
end
|
|
255
255
|
|
|
256
|
-
def self.apply_wix_template(output, input
|
|
256
|
+
def self.apply_wix_template(output, input)
|
|
257
257
|
raise 'WIX path is not set!' if(install_path.nil?)
|
|
258
258
|
input = { files: input } unless(input.kind_of?(Hash))
|
|
259
259
|
@debug = input[:debug] if(!@debug && input.has_key?(:debug))
|