wixgem 0.62.0 → 0.63.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5b6b2f61ea32efb419ef261aba962de55b9dec07
4
- data.tar.gz: a6475f9f4c3f836c333ca324cbd0b123eb713e9a
3
+ metadata.gz: e5363001616f730775c30c740f5f4730c74e4473
4
+ data.tar.gz: 51714dae5f3e875fa8cbd797c80d234ed2776b3c
5
5
  SHA512:
6
- metadata.gz: 1f00a242f5f8aa952448708b09aaf3044fe20cf12a3bc88f60628bfd2265e0166fef0bbb721fdc9d1b10960fe174a519abdc4556419d7c965ee32e7c0c3f13c8
7
- data.tar.gz: 67311a57be6cf3084e23bf0463cc7529a98674c4d3e6d844e38dd32dc9053d6bcfd8c90c854e5b50b940742ae5de3dd15c370285d8a6ca75fa9ad90ded8df839
6
+ metadata.gz: 3626bdd6b93903eb4a9a848f7558eabd138807c557cee76f9625fcffc4bea871e0ea11df8dc6d36c10489266356b3a49790695faf877860f87638d4a7495a11d
7
+ data.tar.gz: 1daf79d0e485baf62127417897cb6dcbee60da3010f087985512de0899cbdfb19b7862bc193acafe3269659fe58f9ad6dcd59660873e0805d0d9da9318264d8e
Binary file
Binary file
@@ -80,7 +80,7 @@ class Wix
80
80
  product = REXML::XPath.match(xml_doc, '//Wix/Product')
81
81
  return xml_doc if(product.length == 0)
82
82
 
83
- product[0].add_element 'SetProperty', { 'Id' => 'ARPINSTALLLOCATION', 'Value' => '#{install_path}', 'After' => 'CostFinalize', 'Sequence' => 'both' }
83
+ product[0].add_element 'SetProperty', { 'Id' => 'ARPINSTALLLOCATION', 'Value' => "#{install_path}", 'After' => 'CostFinalize', 'Sequence' => 'both' }
84
84
  product[0].add_element 'CustomAction', { 'Id' => 'SetTARGETDIR', 'Property' => 'TARGETDIR', 'Value' => "#{install_path}", 'Execute' => 'firstSequence', 'Return' => 'check'}
85
85
 
86
86
  install_execute_sequence = product[0].add_element 'InstallExecuteSequence'
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.62.0
4
+ version: 0.63.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kevin Marshall
@@ -76,8 +76,6 @@ files:
76
76
  - LICENSE
77
77
  - README.md
78
78
  - example/example.msi
79
- - example/example.msi.log
80
- - example/example.msi.wxs
81
79
  - example/example.msm
82
80
  - example/install_files/directory/file2.txt
83
81
  - example/install_files/file1.txt
@@ -1,15 +0,0 @@
1
- ------------------------------------ Installation Paths -----------------------------------
2
- File path Installation Path
3
- ./example.msm ./example.msm
4
- -------------------------------------------------------------------------------------------
5
- ----------------------------------------------------------------------------
6
- {:output=>"", :error=>"", :exit_code=>0, :ignore_exit_code=>false, :debug=>false, :quiet=>true, :command=>"\"C:\\Development\\dep\\OpenSource\\WixToolset\\3.9/bin/heat.exe\" dir . -template product -cg InstallionFiles -gg -nologo -srd -o \"example.wxs\""}
7
- ----------------------------------------------------------------------------
8
- {:output=>"Windows Installer XML Toolset Compiler version 3.9.1006.0\nCopyright (c) Outercurve Foundation. All rights reserved.\n\nexample.wxs\n", :error=>"", :exit_code=>0, :ignore_exit_code=>false, :debug=>false, :quiet=>true, :command=>"\"C:\\Development\\dep\\OpenSource\\WixToolset\\3.9/bin/candle.exe\" -out \"example.wixobj\" \"example.wxs\""}
9
- --------------------------- std output -----------------------------------
10
- Windows Installer XML Toolset Compiler version 3.9.1006.0
11
- Copyright (c) Outercurve Foundation. All rights reserved.
12
-
13
- example.wxs
14
- ----------------------------------------------------------------------------
15
- {:output=>"", :error=>"", :exit_code=>0, :ignore_exit_code=>false, :debug=>false, :quiet=>true, :command=>"\"C:\\Development\\dep\\OpenSource\\WixToolset\\3.9/bin/light.exe\" -nologo -out \"E:/Development/wrk/github/wixgem/example/example.msi\" \"example.wixobj\""}
@@ -1,16 +0,0 @@
1
- <?xml version='1.0' encoding='UTF-8'?>
2
- <Wix xmlns='http://schemas.microsoft.com/wix/2006/wi'>
3
- <Product Id='{53554FC3-4143-48A8-82D9-9D39442FABBC}' Language='1033' Manufacturer='Not Set' Name='example' UpgradeCode='{a62c35a7-6a6d-4392-822b-f6aca7eef88b}' Version='0.62.0'>
4
- <Package Compressed='yes' InstallerVersion='450'/>
5
- <Directory Id='TARGETDIR' Name='SourceDir'><Merge DiskId='1' Id='merge2F9F417DD98EE2C2308398A4A8E9E006' Language='1033' SourceFile='.\example.msm'/></Directory>
6
- <Feature Id='ProductFeature' Level='1' Title='Files to Install'>
7
- <ComponentGroupRef Id='InstallionFiles'/>
8
- <MergeRef Id='merge2F9F417DD98EE2C2308398A4A8E9E006'/></Feature>
9
- <Media Cabinet='product.cab' EmbedCab='yes' Id='1'/>
10
- <CustomAction Execute='firstSequence' Id='SetTARGETDIR' Property='TARGETDIR' Return='check' Value='[ProgramFilesFolder][ProductName]'/><InstallExecuteSequence><Custom Action='SetTARGETDIR' Before='CostInitialize'/></InstallExecuteSequence><InstallUISequence><Custom Action='SetTARGETDIR' Before='CostInitialize'/></InstallUISequence><AdminExecuteSequence><Custom Action='SetTARGETDIR' Before='CostInitialize'/></AdminExecuteSequence><AdminUISequence><Custom Action='SetTARGETDIR' Before='CostInitialize'/></AdminUISequence></Product>
11
- <Fragment>
12
- <ComponentGroup Id='InstallionFiles'>
13
-
14
- </ComponentGroup>
15
- </Fragment>
16
- </Wix>