1
0
Fork 0
mirror of https://github.com/rubyjs/therubyrhino synced 2023-03-27 23:21:34 -04:00
therubyrhino/jar/rhino/jar_path.rb
2015-04-29 12:07:08 +02:00

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