class Latexpdf::Configuration

Attributes

build_path[RW]
logger[RW]
passes[RW]

Public Class Methods

new() click to toggle source
# File lib/latexpdf/configuration.rb, line 5
def initialize
  @passes = 2
  @build_path = File.expand_path("../../tmp/", __dir__)
  @logger = Logger.new(STDERR).tap do |log|
    log.progname = "Latexpdf"
  end
end