Class: ErbLatex::Configuration
- Inherits:
-
Object
- Object
- ErbLatex::Configuration
- Defined in:
- lib/erb_latex/configuration.rb
Instance Attribute Summary collapse
-
#file_extension ⇒ Object
Returns the value of attribute file_extension.
-
#verbose_logs ⇒ Object
Returns the value of attribute verbose_logs.
-
#xelatex_path ⇒ Object
Returns the value of attribute xelatex_path.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
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_extension ⇒ Object
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_logs ⇒ Object
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_path ⇒ Object
Returns the value of attribute xelatex_path.
13 14 15 |
# File 'lib/erb_latex/configuration.rb', line 13 def xelatex_path @xelatex_path end |