Sha256: c3e7c9c8cefeb9843a087ccecb3e024a373210651e2498ea10269a1afb35bc3b

Contents?: true

Size: 620 Bytes

Versions: 1

Compression:

Stored size: 620 Bytes

Contents

require 'java'

require 'rhino/rhino-1.7R3.jar'

module Rhino
  
  # This module contains all the native Rhino objects implemented in Java
  # e.g. Rhino::JS::NativeObject # => org.mozilla.javascript.NativeObject
  module JS
    include_package "org.mozilla.javascript"
    
    module Regexp
      include_package "org.mozilla.javascript.regexp"
    end
    
  end
  
end

require 'rhino/version'
require 'rhino/wormhole'
Rhino.extend Rhino::To

require 'rhino/object'
require 'rhino/context'
require 'rhino/error'
require 'rhino/rhino_ext'
require 'rhino/ruby'
require 'rhino/ruby/access'
require 'rhino/deprecations'

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
therubyrhino-1.73.3 lib/rhino.rb