1
0
Fork 0
mirror of https://github.com/rails/execjs synced 2023-03-27 23:21:20 -04:00
Run JavaScript code from Ruby
Find a file
2014-05-19 09:48:12 -04:00
lib Remove 1.8 non-encoding branches 2014-05-19 09:45:03 -04:00
test Fix coffee-script url 2014-05-19 09:48:12 -04:00
.gitignore Add Gemfile 2011-06-07 16:05:18 -05:00
.travis.yml ruby-head whatever 2013-08-20 19:04:54 -05:00
execjs.gemspec No multi_json gem 2013-08-20 18:58:55 -05:00
Gemfile Skip testing with json gem 2013-09-27 15:15:05 -04:00
LICENSE Update copyright year 2013-08-20 19:08:41 -05:00
Rakefile Add deprecated runtime flag 2012-05-20 14:25:13 -05:00
README.md Update copyright year 2013-08-20 19:08:41 -05:00

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:

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) 2013 Sam Stephenson and Josh Peek.

Released under the MIT license. See LICENSE for details.