Module: Dauphin

Defined in:
lib/dauphin.rb,
lib/dauphin/pdf.rb,
lib/dauphin/logging.rb,
lib/dauphin/runtime.rb,
lib/dauphin/version.rb,
lib/dauphin/platform.rb,
lib/dauphin/stdout_logger.rb

Defined Under Namespace

Modules: Logging Classes: Pdf, Platform, Runtime, StdoutLogger

Constant Summary collapse

VERSION =
'0.1.0'

Class Method Summary collapse

Class Method Details

.rootObject



28
29
30
# File 'lib/dauphin.rb', line 28

def root
  Pathname.new(File.expand_path('../', __FILE__))
end

.runtimeObject



20
21
22
# File 'lib/dauphin.rb', line 20

def runtime
  @default_runtime || Dauphin::Runtime.new
end

.runtime=(custom_exe) ⇒ Object



24
25
26
# File 'lib/dauphin.rb', line 24

def runtime=(custom_exe)
  @default_runtime = custom_exe
end