Sha256: c5ddbe86f37de266c117031ce76223d8ea57537abf48bc4a905b61fc476e0a95

Contents?: true

Size: 1.5 KB

Versions: 120

Compression:

Stored size: 1.5 KB

Contents

ExecJS
======

ExecJS lets you run JavaScript code from Ruby. It automatically picks
the best runtime available to evaluate your JavaScript program, then
returns the result to you as a Ruby object.

ExecJS supports these runtimes:

* [therubyracer](https://github.com/cowboyd/therubyracer) - Google V8
  embedded within Ruby
* [therubyrhino](https://github.com/cowboyd/therubyrhino) - Mozilla
  Rhino embedded within JRuby
* [Johnson](https://github.com/jbarnette/johnson) - Mozilla
  SpiderMonkey embedded within Ruby
* [Mustang](https://github.com/nu7hatch/mustang) - Mustang V8
  embedded within Ruby
* [Node.js](http://nodejs.org/)
* Apple JavaScriptCore - Included with Mac OS X
* [Mozilla SpiderMonkey](http://www.mozilla.org/js/spidermonkey/)
* [Microsoft Windows Script Host](http://msdn.microsoft.com/en-us/library/9bbdkx3k.aspx) (JScript)

A short example:

    require "execjs"
    ExecJS.eval "'red yellow blue'.split(' ')"
    # => ["red", "yellow", "blue"]

A longer example, demonstrating how to invoke the CoffeeScript compiler:

    require "execjs"
    require "open-uri"
    source = open("http://jashkenas.github.com/coffee-script/extras/coffee-script.js").read

    context = ExecJS.compile(source)
    context.call("CoffeeScript.compile", "square = (x) -> x * x", :bare => true)
    # => "var square;\nsquare = function(x) {\n  return x * x;\n};"

# Installation

    $ gem install execjs

# License

Copyright (c) 2011 Sam Stephenson and Josh Peek.

Released under the MIT license. See `LICENSE` for details.

Version data entries

120 entries across 74 versions & 5 rubygems

Version Path
classiccms-0.6.5 vendor/bundle/gems/execjs-1.3.0/README.md
classiccms-0.6.5 vendor/bundle/gems/execjs-1.3.2/README.md
classiccms-0.6.4 vendor/bundle/gems/execjs-1.3.0/README.md
classiccms-0.6.4 vendor/bundle/gems/execjs-1.3.2/README.md
classiccms-0.6.3 vendor/bundle/gems/execjs-1.3.0/README.md
classiccms-0.6.3 vendor/bundle/gems/execjs-1.3.2/README.md
classiccms-0.6.2 vendor/bundle/gems/execjs-1.3.2/README.md
classiccms-0.6.2 vendor/bundle/gems/execjs-1.3.0/README.md
classiccms-0.6.1 vendor/bundle/gems/execjs-1.3.0/README.md
classiccms-0.6.1 vendor/bundle/gems/execjs-1.3.2/README.md
classiccms-0.6.0 vendor/bundle/gems/execjs-1.3.2/README.md
classiccms-0.6.0 vendor/bundle/gems/execjs-1.3.0/README.md
classiccms-0.5.17 vendor/bundle/gems/execjs-1.3.0/README.md
classiccms-0.5.17 vendor/bundle/gems/execjs-1.3.2/README.md
classiccms-0.5.16 vendor/bundle/gems/execjs-1.3.0/README.md
classiccms-0.5.16 vendor/bundle/gems/execjs-1.3.2/README.md
classiccms-0.5.15 vendor/bundle/gems/execjs-1.3.2/README.md
classiccms-0.5.15 vendor/bundle/gems/execjs-1.3.0/README.md
classiccms-0.5.14 vendor/bundle/gems/execjs-1.3.0/README.md
classiccms-0.5.14 vendor/bundle/gems/execjs-1.3.2/README.md