1
0
Fork 0
mirror of https://github.com/rails/execjs synced 2023-03-27 23:21:20 -04:00

Remove V8 runtime since it's not an officially supported interpreter

This commit is contained in:
Sam Stephenson 2011-03-10 15:26:05 -06:00
parent 0dc15c319c
commit 998de3c0ff
3 changed files with 0 additions and 11 deletions

View file

@ -4,14 +4,6 @@ module ExecJS
RubyRhino = RubyRhinoRuntime.new RubyRhino = RubyRhinoRuntime.new
V8 = ExternalRuntime.new(
:name => "V8",
:command => "v8",
:test_args => "--help",
:test_match => /--crankshaft/,
:runner_path => ExecJS.root + "/support/basic_runner.js"
)
Node = ExternalRuntime.new( Node = ExternalRuntime.new(
:name => "Node.js (V8)", :name => "Node.js (V8)",
:command => ["nodejs", "node"], :command => ["nodejs", "node"],
@ -46,7 +38,6 @@ module ExecJS
@runtimes ||= [ @runtimes ||= [
RubyRacer, RubyRacer,
RubyRhino, RubyRhino,
V8,
Node, Node,
JavaScriptCore, JavaScriptCore,
Spidermonkey, Spidermonkey,

View file

@ -11,7 +11,6 @@ ExecJS supports these runtimes:
embedded within MRI Ruby embedded within MRI Ruby
* [therubyrhino](https://github.com/cowboyd/therubyrhino) - Mozilla * [therubyrhino](https://github.com/cowboyd/therubyrhino) - Mozilla
Rhino embedded within JRuby Rhino embedded within JRuby
* [Google V8](http://code.google.com/p/v8/)
* [Node.js](http://nodejs.org/) * [Node.js](http://nodejs.org/)
* Apple JavaScriptCore - Included with Mac OS X * Apple JavaScriptCore - Included with Mac OS X
* [Mozilla Spidermonkey](http://www.mozilla.org/js/spidermonkey/) * [Mozilla Spidermonkey](http://www.mozilla.org/js/spidermonkey/)

View file

@ -57,7 +57,6 @@ end
runtimes = [ runtimes = [
"RubyRacer", "RubyRacer",
"RubyRhino", "RubyRhino",
"V8",
"Node", "Node",
"JavaScriptCore", "JavaScriptCore",
"Spidermonkey", "Spidermonkey",