Module: ExecJS::Runtimes

Defined in:
lib/execjs/runtimes.rb

Constant Summary collapse

RubyRacer =
RubyRacerRuntime.new
RubyRhino =
RubyRhinoRuntime.new
Mustang =
MustangRuntime.new
Node =
ExternalRuntime.new(
  :name        => "Node.js (V8)",
  :command     => ["nodejs", "node"],
  :runner_path => ExecJS.root + "/support/node_runner.js"
)
JavaScriptCore =
ExternalRuntime.new(
  :name        => "JavaScriptCore",
  :command     => "/System/Library/Frameworks/JavaScriptCore.framework/Versions/A/Resources/jsc",
  :runner_path => ExecJS.root + "/support/basic_runner.js",
  :conversion => { :from => "ISO8859-1", :to => "UTF-8" }
)
Spidermonkey =
ExternalRuntime.new(
  :name        => "Spidermonkey",
  :command     => "js",
  :runner_path => ExecJS.root + "/support/basic_runner.js"
)
JScript =
ExternalRuntime.new(
  :name        => "JScript",
  :command     => "cscript //E:jscript //Nologo",
  :runner_path => ExecJS.root + "/support/jscript_runner.js"
)

Class Method Summary collapse

Class Method Details

.autodetectObject



41
42
43
44
45
# File 'lib/execjs/runtimes.rb', line 41

def self.autodetect
  from_environment || best_available ||
    raise(RuntimeUnavailable, "Could not find a JavaScript runtime. " +
      "See https://github.com/sstephenson/execjs for a list of available runtimes.")
end

.best_availableObject



47
48
49
# File 'lib/execjs/runtimes.rb', line 47

def self.best_available
  runtimes.find(&:available?)
end

.from_environmentObject



51
52
53
54
55
56
57
58
59
60
61
62
63
# File 'lib/execjs/runtimes.rb', line 51

def self.from_environment
  if name = ENV["EXECJS_RUNTIME"]
    if runtime = const_get(name)
      if runtime.available?
        runtime if runtime.available?
      else
        raise RuntimeUnavailable, "#{name} runtime is not available on this system"
      end
    elsif !name.empty?
      raise RuntimeUnavailable, "#{name} runtime is not defined"
    end
  end
end

.namesObject



65
66
67
# File 'lib/execjs/runtimes.rb', line 65

def self.names
  constants
end

.runtimesObject



69
70
71
72
73
74
75
76
77
78
79
# File 'lib/execjs/runtimes.rb', line 69

def self.runtimes
  @runtimes ||= [
    RubyRacer,
    RubyRhino,
    Mustang,
    Node,
    JavaScriptCore,
    Spidermonkey,
    JScript
  ]
end