Class: Wixgem::Wix

Inherits:
Object
  • Object
show all
Defined in:
lib/wixgem.rb

Class Method Summary collapse

Class Method Details

.debugObject



28
29
30
# File 'lib/wixgem.rb', line 28

def self.debug
  return @debug
end

.debug=(bool) ⇒ Object



25
26
27
# File 'lib/wixgem.rb', line 25

def self.debug=(bool)
  @debug = bool
end

.initializeObject



12
13
14
15
16
17
# File 'lib/wixgem.rb', line 12

def self.initialize
  @install_path = ''
	@debug = false
	@logger = nil
	@log_file = nil
end

.install_pathObject



21
22
23
# File 'lib/wixgem.rb', line 21

def self.install_path
  return @install_path
end

.install_path=(path) ⇒ Object



18
19
20
# File 'lib/wixgem.rb', line 18

def self.install_path=(path)
  @install_path = path
end

.make_installation(output_file, input) ⇒ Object



37
38
39
40
# File 'lib/wixgem.rb', line 37

def self.make_installation(output_file, input)
  gem_dir = File.dirname(__FILE__)
  create_package(output_file, input)
end

.make_mergemodule(output_file, input) ⇒ Object



32
33
34
35
# File 'lib/wixgem.rb', line 32

def self.make_mergemodule(output_file, input)
  gem_dir = File.dirname(__FILE__)
  create_package(output_file, input)
end