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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +2 -3
  3. data/lib/wixgem.rb +3 -3
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d943092ecd25af3e4a5723cc2a3d0cba86dab548
4
- data.tar.gz: b65875ff2e0edc9a9a1945d8da435350da9dabd2
3
+ metadata.gz: 47ef7554d4e1d1d816c7161eddb90c0cc8efc435
4
+ data.tar.gz: 77fced7ea571cdeaa0735693e9668e91c14627b4
5
5
  SHA512:
6
- metadata.gz: 84c7cce3863d8103c227149bd401d7635c841d326df5bd1a66ba2f8e474d421a72f18e394fa2d4ff1bce5609e1a8de981c0c745d2001861146908710a938b076
7
- data.tar.gz: ae5425297ea707b002229aa9eedd312da4abc7ee97392f7f740baed68a51dad60e61800668d619e8787422652dde4929b6e16c0ee42810a753f71a3973a4c75a
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 shooting the
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
@@ -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, "#{gem_dir}/templates/mergemodule.wxs")
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, "#{gem_dir}/templates/Install.wxs")
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, template)
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))
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.36.0
4
+ version: 0.37.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kevin Marshall