mirror of
https://github.com/rubyjs/therubyrhino
synced 2023-03-27 23:21:34 -04:00
5 lines
214 B
Ruby
5 lines
214 B
Ruby
module Rhino
|
|
JAR_VERSION = '1.7.6'; version = JAR_VERSION.split('.')
|
|
jar_file = "rhino-#{version[0]}.#{version[1]}.#{version[2]}.jar"
|
|
JAR_PATH = File.expand_path("../#{jar_file}", File.dirname(__FILE__))
|
|
end
|