1
0
Fork 0
mirror of https://github.com/rubyjs/therubyracer synced 2023-03-27 23:21:42 -04:00
Embed the V8 Javascript Interpreter into Ruby
Find a file
2010-03-22 10:34:03 -05:00
bin Add some nice sugary sweetness to the command line. 2010-03-17 08:28:02 -05:00
docs Add a docs target & worked on documentation. Changed pushString() to 2009-10-17 23:45:02 -04:00
ext/v8 always convert method names to strings in order to make it 1.9.1 compatible 2010-03-19 10:11:56 -05:00
lib Add selftest in order to verify a gem installation 2010-03-22 10:34:03 -05:00
script change prompt to something more fun 2009-12-15 07:40:57 +02:00
spec update redjs spec 2010-03-01 00:24:28 -06:00
tasks 'gemify' the source 2009-12-15 07:35:55 +02:00
.gitignore fix string copy routine -- downshift to simple implementation 2010-03-14 21:16:25 -05:00
.gitmodules point jsapi_spec at public git url 2010-02-03 10:20:11 -06:00
Doxyfile Add a docs target & worked on documentation. Changed pushString() to 2009-10-17 23:45:02 -04:00
History.txt ruby 1.9 compatibility goes into history 2010-03-19 10:14:23 -05:00
Rakefile 0.5.5: now runs on RHEL 5 2010-03-15 07:13:10 -05:00
README.rdoc update readme with gem install syntax 2010-03-03 00:37:35 -06:00
therubyracer.gemspec don't show stack trace if interupting stdin 2010-03-17 08:35:14 -05:00

= therubyracer

* http://github.com/cowboyd/therubyracer

== DESCRIPTION:

Embed the V8 Javascript interpreter into Ruby.


== FEATURES/PROBLEMS:

* Evaluate Javascript from with in Ruby
* Embed your Ruby objects into the Javascript world
* Manipulate JavaScript objects and call JavaScript functions from Ruby
* API compatible with the The Ruby Rhino (for JRuby: http://github.com/cowboyd/therubyrhino)
* Currently ALPHA software. 

== SYNOPSIS:
  gem install therubyracer

# then in your ruby code

  require 'v8'
  
# evaluate some simple javascript

  V8.eval("7 * 6") #=> 42

# embed values into the scope of your context

  V8::Context.open do |cxt|
    cxt['foo'] = "bar"
    cxt.eval('foo') # => "bar"
  end

# evaluate a ruby function from javascript
  
  V8::Context.open do |context|
    context["say"] = lambda {|word, times| word * times}
    context.eval("say("Hello", 3)") #=> HelloHelloHello
  end
  
# embed a ruby object into your javascript environment

  class MyMath
    def plus(lhs, rhs)
      lhs + rhs
    end
  end

  V8::Context.open do |context|
    context["math"] = MyMath.new
    context.eval("math.plus(20,22)") #=> 42
  end

# make a ruby object *be* your javascript environment
  math = MyMath.new
  V8::Context.open(:with => math) do |context|
    context.eval("plus(20,22)") #=> 42
  end
  
  #or the equivalent
  
  math.eval_js("plus(20,22)")

# Configure your embedding setup

  #COMING SOON!
  # Make your standard objects (Object, String, etc...) immutable
  V8::Context.open(:sealed => true) do |context|
    context.eval("Object.prototype.toString = function() {}") # this is an error!
  end
  
  #COMING SOON!
  #limit the number of instructions that can be executed in order to prevent
  #rogue scripts
  V8::Context.open do |context|
    context.instruction_limit = 100000
    context.eval("while (true);") # => Error!
  end

==== Different ways of loading javascript source

In addition to just evaluating strings, you can also use streams such as files.

# evaluate bytes read from any File/IO object:
  File.open("mysource.js") do |file|
    eval_js file, "mysource.js"
  end

# or load it by filename
  V8::Context.open do |context|
    context.load("mysource.js")
  end

=== Safe by default

The Ruby Racer is designed to let you evaluate javascript as safely as possible unless you tell it to do something more
dangerous. The default context is a hermetically sealed javascript environment with only the standard javascript objects
and functions. Nothing from the ruby world is accessible at all.

For ruby objects that you explicitly embed into javascript, only the +public+ methods *defined in their classes* are
exposed by default. E.g.

  class A
    def a
      "a"
    end
  end

  class B < A
    def b
      "b"
    end
  end


  V8::Context.open do |cxt|
    cxt['a'] = A.new
    cxt['b'] = B.new
    cxt.eval("a.a()") # => 'a'
    cxt.eval("b.b()") # => 'b'
    cxt.eval("b.a()") # => 'TypeError: undefined property 'a' is not a function'
  end
  
== REQUIREMENTS:

* python >= 2.5 (required to compile v8)
* C++ compiler

== INSTALL:
* gem install therubyracer

== DEVELOP
* git clone git://github.com/cowboyd/therubyracer.git
* cd therubyracer
* rake compile

== LICENSE:

(The MIT License)

Copyright (c) 2009,2010 Charles Lowell

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
'Software'), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.