Module: CommandWrap::Config

Defined in:
lib/command_wrap/config.rb,
lib/command_wrap/config/xvfb.rb,
lib/command_wrap/config/open_office.rb

Defined Under Namespace

Modules: OpenOffice, Xvfb

Class Method Summary collapse

Class Method Details

.pdftkObject



13
14
15
# File 'lib/command_wrap/config.rb', line 13

def self.pdftk
    @pdftk ||= 'pdftk'
end

.pdftk=(pdftk) ⇒ Object



17
18
19
# File 'lib/command_wrap/config.rb', line 17

def self.pdftk= (pdftk)
    @pdftk = pdftk
end

.tmp_dirObject



5
6
7
# File 'lib/command_wrap/config.rb', line 5

def self.tmp_dir
    @tmp_dir ||= '/tmp'
end

.tmp_dir=(tmp_dir) ⇒ Object



9
10
11
# File 'lib/command_wrap/config.rb', line 9

def self.tmp_dir= (tmp_dir)
    @tmp_dir = tmp_dir
end

.zipObject



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

def self.zip
    @zip ||= 'zip'
end

.zip=(zip) ⇒ Object



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

def self.zip= (zip)
    @zip = zip
end