2011-12-07 13:59:39 -05:00
|
|
|
require 'java'
|
|
|
|
|
|
|
|
require 'rhino/rhino-1.7R3.jar'
|
2009-09-24 20:06:31 -04:00
|
|
|
|
|
|
|
module Rhino
|
2011-12-07 13:59:39 -05:00
|
|
|
|
|
|
|
# This module contains all the native Rhino objects implemented in Java
|
|
|
|
# e.g. Rhino::JS::NativeObject # => org.mozilla.javascript.NativeObject
|
|
|
|
module JS
|
2011-12-14 05:49:35 -05:00
|
|
|
include_package "org.mozilla.javascript"
|
2011-12-07 13:59:39 -05:00
|
|
|
|
|
|
|
module Regexp
|
2011-12-14 05:49:35 -05:00
|
|
|
include_package "org.mozilla.javascript.regexp"
|
2011-12-07 13:59:39 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2012-04-18 01:45:41 -04:00
|
|
|
require 'rhino/version'
|
2011-12-09 01:52:47 -05:00
|
|
|
require 'rhino/wormhole'
|
|
|
|
Rhino.extend Rhino::To
|
|
|
|
|
2011-12-07 13:59:39 -05:00
|
|
|
require 'rhino/object'
|
|
|
|
require 'rhino/context'
|
2011-12-09 05:28:27 -05:00
|
|
|
require 'rhino/error'
|
2011-12-09 01:52:47 -05:00
|
|
|
require 'rhino/rhino_ext'
|
2011-12-12 16:17:42 -05:00
|
|
|
require 'rhino/ruby'
|
2012-01-06 12:29:22 -05:00
|
|
|
require 'rhino/ruby/access'
|
2011-12-09 01:52:47 -05:00
|
|
|
require 'rhino/deprecations'
|