Class: Wixgem::Wix

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

Class Method Summary collapse

Class Method Details

.debugObject



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

.initializeObject



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_pathObject



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