class Asciidoctor::PathResolver
def initialize file_separator = nil, working_dir = nil
working_dir - the String working directory (optional, default: Dir.pwd)
(optional, default: File::ALT_SEPARATOR or File::SEPARATOR)
file_separator - the String file separator to use for path operations
expanded to an absolute path inside the constructor.
(to override the present working directory). The working directory will be
file separator (to override the system default) and the working directory
Public: Construct a new instance of PathResolver, optionally specifying the
def initialize file_separator = nil, working_dir = nil @file_separator = file_separator || ::File::ALT_SEPARATOR || ::File::SEPARATOR @working_dir = working_dir ? ((root? working_dir) ? (posixify working_dir) : (::File.expand_path working_dir)) : ::Dir.pwd @_partition_path_sys = {} @_partition_path_web = {} end