Sha256: 0b62014e176aa44c62f0ce4745fc4968071bca80276e826d375dc6a398cc8e8a
Contents?: true
Size: 975 Bytes
Versions: 10
Compression:
Stored size: 975 Bytes
Contents
# encoding: utf-8 require 'os' module Libis module Format # noinspection RubyConstantNamingConvention Config = ::Libis::Tools::Config Config[:converter_chain_max_level] = 8 Config[:java_path] = 'java' Config[:j2kdriver] = 'j2kdriver' Config[:soffice_path] = 'soffice' Config[:ghostscript_path] = 'gs' # Config[:pdfa_path] = # File.absolute_path( # File.join( # File.dirname(__FILE__), '..', '..', '..', 'tools', 'pdf', 'pdfa', 'pdfa' # ) # ) Config[:droid_path] = File.absolute_path( File.join( File.dirname(__FILE__), '..', '..', '..', 'tools', 'droid', OS.windows? ? 'droid.bat' : 'droid.sh' ) ) Config[:fido_path] = File.absolute_path( File.join( File.dirname(__FILE__), '..', '..', '..', 'tools', 'fido', OS.windows? ? 'fido.bat' : 'fido.sh' ) ) end end
Version data entries
10 entries across 10 versions & 1 rubygems