1
0
Fork 0
mirror of https://github.com/rubyjs/therubyrhino synced 2023-03-27 23:21:34 -04:00
Embed the Mozilla Rhino Javascript interpreter into Ruby
Find a file
2009-10-09 18:36:21 -05:00
lib extract mapping of javascript -> ruby and ruby -> javascript into wormhole module 2009-10-06 13:20:37 -05:00
script make script/console jruby 2009-10-09 18:35:49 -05:00
spec clarify wording of context example 2009-10-09 18:36:21 -05:00
tasks basic javascript access from jruby 2009-09-24 19:08:40 -05:00
.gitignore basic javascript access from jruby 2009-09-24 19:08:40 -05:00
History.txt make NativeObject enumerable 2009-10-06 09:04:57 -05:00
Manifest.txt basic javascript access from jruby 2009-09-24 19:08:40 -05:00
Rakefile update gem description 2009-09-24 20:35:31 -05:00
README.rdoc update readme doc for init_standard_objects api 2009-10-06 09:18:13 -05:00

= therubyrhino

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

== DESCRIPTION:

Embed the Mozilla Rhino Javascript interpreter into Ruby

== FEATURES/PROBLEMS:

* Evaluate Javascript from with in Ruby
* Embed your Ruby objects into the Javascript world

== SYNOPSIS:

1. Javascript goes into Ruby
1. Ruby Objects goes into Javascript
1. Our shark's in the Javascript!


  include Rhino
# evaluate some simple javascript

  Rhino::Context.open do |context|
    context.evaljs("7 * 6") #=> 42
  end

# evaluate a ruby function from javascript
  
  Rhino::Context.open do |context|
    scope = context.init_standard_objects
    scope["say"] = function {|word, times| word * times}
    context.evaljs("say("Hello", 3)") #=> HelloHelloHello
  end

# Configure your embedding setup

  Rhino::Context.open do |context|
    # Make your standard objects (Object, String, etc...) immutable
    scope = context.init_standard_objects(:sealed => true)
    context.evaljs("Object.prototype.toString = function() {}") # this is an error!
    
    #Turn on Java integration from javascript (probably a bad idea)
    scope = context.init_standard_objects(:java => true)
    context.evaljs("java.lang.System.exit()") #it's dangerous!
  end
== REQUIREMENTS:

* JRuby >= 1.3.0

== INSTALL:

* jgem install therubyrhino

== LICENSE:

(The MIT License)

Copyright (c) 2009 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.