raykit 0.0.381 → 0.0.382
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/raykit/installer.rb +17 -0
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '009de6bc0eb245459023848f96351f101970de107de62dbb45eeb6b81aad7642'
|
4
|
+
data.tar.gz: fcbb966d619d26fa436e528f7592b99abab1dc89546c15a7d7aa6e9b46ffcc5a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c167720fa6626bcaa8eb6131f9daa15e5d5c5b48069960b5ed10e1f1d201c3dd8fa8c0c09bbcaea271a4635c01fc2690e05c7b8db4a6c5704d1b651bd6c892a5
|
7
|
+
data.tar.gz: 53ef5e43c879a3acff55c2c71b38940b16048f789d2abc7c2d63fa017d506d82b817248c8ea562d2e555a8ac1e160459db0b03ac9802d672633d7b5992468148
|
@@ -0,0 +1,17 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Raykit
|
4
|
+
class Installer
|
5
|
+
def make_msi(wxs_file, source_dir, msi_filename)
|
6
|
+
wxs_basename = "#{File.basename(wxs_file, ".wxs")}"
|
7
|
+
FileUtils.cp(wxs_file, "#{source_dir}/#{File.basename(wxs_file)}")
|
8
|
+
Dir.chdir(source_dir) do
|
9
|
+
run("candle #{File.basename(wxs_file)}")
|
10
|
+
run("light #{File.basename(wxs_file, ".wxs")}.wixobj")
|
11
|
+
FileUtils.cp("#{wxs_basename}.msi", msi_filename)
|
12
|
+
raise "#{msi_filename} does not exist" if !File.exists?(msi_filename)
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: raykit
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.382
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Lou Parslow
|
@@ -103,6 +103,7 @@ files:
|
|
103
103
|
- lib/raykit/git/files.rb
|
104
104
|
- lib/raykit/git/repositories.rb
|
105
105
|
- lib/raykit/git/repository.rb
|
106
|
+
- lib/raykit/installer.rb
|
106
107
|
- lib/raykit/log.rb
|
107
108
|
- lib/raykit/logevent.rb
|
108
109
|
- lib/raykit/logging.rb
|