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



42
43
44
# File 'lib/wixgem.rb', line 42

def self.debug
  return @debug
end

.debug=(bool) ⇒ Object



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

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

.initializeObject



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

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

.install_pathObject



35
36
37
# File 'lib/wixgem.rb', line 35

def self.install_path
  return @@install_path
end

.install_path=(path) ⇒ Object



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

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

.make_installation(output_file, input) ⇒ Object



51
52
53
54
# File 'lib/wixgem.rb', line 51

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

.make_mergemodule(output_file, input) ⇒ Object



46
47
48
49
# File 'lib/wixgem.rb', line 46

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