Class: Wixgem::Wix
- Inherits:
-
Object
- Object
- Wixgem::Wix
- Defined in:
- lib/wixgem.rb
Class Method Summary collapse
- .debug ⇒ Object
- .debug=(bool) ⇒ Object
- .initialize ⇒ Object
- .install_path ⇒ Object
- .install_path=(path) ⇒ Object
- .make_installation(output_file, input) ⇒ Object
- .make_mergemodule(output_file, input) ⇒ Object
Class Method Details
.debug ⇒ Object
27 28 29 |
# File 'lib/wixgem.rb', line 27 def self.debug return @debug end |
.debug=(bool) ⇒ Object
24 25 26 |
# File 'lib/wixgem.rb', line 24 def self.debug=(bool) @debug = bool end |
.initialize ⇒ Object
11 12 13 14 15 16 |
# File 'lib/wixgem.rb', line 11 def self.initialize @install_path = '' @debug = false @logger = nil @log_file = nil end |
.install_path ⇒ Object
20 21 22 |
# File 'lib/wixgem.rb', line 20 def self.install_path return @install_path end |
.install_path=(path) ⇒ Object
17 18 19 |
# File 'lib/wixgem.rb', line 17 def self.install_path=(path) @install_path = path end |
.make_installation(output_file, input) ⇒ Object
36 37 38 39 |
# File 'lib/wixgem.rb', line 36 def self.make_installation(output_file, input) gem_dir = File.dirname(__FILE__) create_package(output_file, input) end |
.make_mergemodule(output_file, input) ⇒ Object
31 32 33 34 |
# File 'lib/wixgem.rb', line 31 def self.make_mergemodule(output_file, input) gem_dir = File.dirname(__FILE__) create_package(output_file, input) end |