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-06 08:52:45 -05:00
lib add native object wrapper for easy access to js objects from ruby 2009-10-06 08:52:45 -05:00
script basic javascript access from jruby 2009-09-24 19:08:40 -05:00
spec add native object wrapper for easy access to js objects from ruby 2009-10-06 08:52:45 -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 basic javascript access from jruby 2009-09-24 19:08:40 -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 cleanup the blorted README. I never did learn how to write proper rdoc 2009-09-24 21:45:05 -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!



# evaluate some simple javascript

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

# evaluate a ruby function from javascript

  include Rhino
  
  Rhino::Context.open do |context|
    context.standard do |scope|
      scope.put("say", scope, function {|word, times| word * times})
      context.evaljs("say("Hello", 3)") #=> HelloHelloHello
    end
  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.