1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
require "execjs/version"
require "rbconfig"
module ExecJS
class Error < ::StandardError; end
class RuntimeError < Error; end
class ProgramError < Error; end
class RuntimeUnavailable < RuntimeError; end
class << self
attr_reader :runtime
def runtime=(runtime)
raise RuntimeUnavailable, "#{runtime.name} is unavailable on this system" unless runtime.available?
@runtime = runtime
end
def exec(source)
runtime.exec(source)
end
def eval(source)
runtime.eval(source)
end
def compile(source)
runtime.compile(source)
end
def root
@root ||= File.expand_path("..", __FILE__)
end
def windows?
@windows ||= RbConfig::CONFIG["host_os"] =~ /mswin|mingw/
end
end
end
|