dev 2.0.171 → 2.0.172

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/lib/apps/wix.rb +15 -0
  3. data/lib/tasks/clean.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7a3ce008888f1a7ba2cf70931532333cec7e5af4
4
- data.tar.gz: 9b7bc3cd6233b1b7d6d30afce2aebd25379f0b51
3
+ metadata.gz: 84e018ef93028f170fa45681eec7b6e028cfddcc
4
+ data.tar.gz: 4113c31aed75fad4bcfd330214c395ca3f70d0bc
5
5
  SHA512:
6
- metadata.gz: 319a683bf7f4907dc5aef375d5416f39d1a827793053f5172113565e1f86dc09cb13a79dc30e16367c6314f440b6d3c5e40999ef3793580cc4cb415fb3389eb7
7
- data.tar.gz: 1734d3aa42d2821d379b4df6fd910af350db146fc24407137169d310ead814f3dcd8773da94f7ee92cd56298a8f25f942afbbab2f325b120512ef3575419c79e
6
+ metadata.gz: 579f6794a1986e316d941a308269ee75ad992b11a372b39fcd80822455c3a91c6458b1cffed2680da86f48f0549d32b0a3a24ab593e9d02c6046d4279a4b3d6a
7
+ data.tar.gz: 205a907315f195db10ad031dcb3fd0593994255c3a89cb075df2f00c0a692036db106b0c8aefa89f17831d5112e8ddce9c045f3099de6164dabb138f446c0332
@@ -1 +1,16 @@
1
1
  puts __FILE__ if defined?(DEBUG)
2
+
3
+ class Wix
4
+ def self.get_build_commands wxs_file
5
+ build_commands=nil
6
+ if(File.exists?(wxs_file))
7
+ build_commands=Array.new if build_commands.nil?
8
+ build_commands << "candle #{wxs_file}"
9
+ build_commands << "light #{File.basename(wxs_file,'.*')}"
10
+
11
+ # puts `"#{candle}" HelloConsole.wxs`
12
+ #puts `"#{light}" HelloConsole.wixobj`
13
+ end
14
+ build_commands
15
+ end
16
+ end
@@ -2,7 +2,7 @@ puts __FILE__ if defined?(DEBUG)
2
2
 
3
3
  require 'rake/clean'
4
4
  # Clean Files
5
- CLEAN.include('**/*.{sdf,sud,ncb,cache,user,wixobj}')
5
+ CLEAN.include('**/*.{sdf,sud,ncb,cache,user,wixobj,wixpdb}')
6
6
  CLEAN.include('rake.default')
7
7
 
8
8
  # Clean Folders
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dev
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.171
4
+ version: 2.0.172
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lou Parslow