1
0
Fork 0
mirror of https://github.com/rubyjs/therubyrhino synced 2023-03-27 23:21:34 -04:00
therubyrhino/lib/rhino.rb

12 lines
314 B
Ruby
Raw Normal View History

2009-09-24 20:06:31 -04:00
$:.unshift(File.dirname(__FILE__)) unless
$:.include?(File.dirname(__FILE__)) || $:.include?(File.expand_path(File.dirname(__FILE__)))
module Rhino
2009-11-10 09:54:16 -05:00
VERSION = '1.72.2'
2009-09-24 20:06:31 -04:00
require 'rhino/java'
require 'rhino/context'
require 'rhino/wormhole'
require 'rhino/native_object'
require 'rhino/ruby_object'
2009-09-24 20:06:31 -04:00
end