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.
- checksums.yaml +4 -4
- data/lib/apps/wix.rb +15 -0
- data/lib/tasks/clean.rb +1 -1
- 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: 84e018ef93028f170fa45681eec7b6e028cfddcc
|
4
|
+
data.tar.gz: 4113c31aed75fad4bcfd330214c395ca3f70d0bc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 579f6794a1986e316d941a308269ee75ad992b11a372b39fcd80822455c3a91c6458b1cffed2680da86f48f0549d32b0a3a24ab593e9d02c6046d4279a4b3d6a
|
7
|
+
data.tar.gz: 205a907315f195db10ad031dcb3fd0593994255c3a89cb075df2f00c0a692036db106b0c8aefa89f17831d5112e8ddce9c045f3099de6164dabb138f446c0332
|
data/lib/apps/wix.rb
CHANGED
@@ -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
|
data/lib/tasks/clean.rb
CHANGED