Class: ErbLatex::Configuration

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfiguration

Returns a new instance of Configuration.



16
17
18
19
20
# File 'lib/erb_latex/configuration.rb', line 16

def initialize
    @verbose_logs   = false
    @file_extension = '.tex.erb'
    @xelatex_path   = 'xelatex'
end

Instance Attribute Details

#file_extensionObject

Returns the value of attribute file_extension.



12
13
14
# File 'lib/erb_latex/configuration.rb', line 12

def file_extension
  @file_extension
end

#verbose_logsObject

Returns the value of attribute verbose_logs.



14
15
16
# File 'lib/erb_latex/configuration.rb', line 14

def verbose_logs
  @verbose_logs
end

#xelatex_pathObject

Returns the value of attribute xelatex_path.



13
14
15
# File 'lib/erb_latex/configuration.rb', line 13

def xelatex_path
  @xelatex_path
end