module Dauphin

Constants

VERSION

Public Class Methods

root() click to toggle source
# File lib/dauphin.rb, line 28
def root
  Pathname.new(File.expand_path('../', __FILE__))
end
runtime() click to toggle source
# File lib/dauphin.rb, line 20
def runtime
  @default_runtime || Dauphin::Runtime.new
end
runtime=(custom_exe) click to toggle source
# File lib/dauphin.rb, line 24
def runtime=(custom_exe)
  @default_runtime = custom_exe
end