Class: Wixgem::Wix

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

Constant Summary collapse

@@install_path =
ENV['WIX']

Class Method Summary collapse

Class Method Details

.debugObject



40
41
42
# File 'lib/wixgem.rb', line 40

def self.debug
  return @debug
end

.debug=(bool) ⇒ Object



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

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

.initializeObject



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

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

.install_pathObject



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

def self.install_path
  return @@install_path
end

.install_path=(path) ⇒ Object



30
31
32
# File 'lib/wixgem.rb', line 30

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

.make_installation(output_file, input) ⇒ Object



49
50
51
52
# File 'lib/wixgem.rb', line 49

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

.make_mergemodule(output_file, input) ⇒ Object



44
45
46
47
# File 'lib/wixgem.rb', line 44

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