2012-08-02 05:49:28 -04:00
|
|
|
# -*- encoding: utf-8 -*-
|
2013-06-16 08:36:29 -04:00
|
|
|
$:.push File.expand_path("../jar", __FILE__)
|
|
|
|
require 'rhino/jar_path'
|
2012-08-02 05:49:28 -04:00
|
|
|
|
|
|
|
Gem::Specification.new do |s|
|
|
|
|
s.name = %q{therubyrhino_jar}
|
2013-06-16 08:36:29 -04:00
|
|
|
s.version = "#{Rhino::JAR_VERSION}"
|
2012-08-02 05:49:28 -04:00
|
|
|
s.authors = ["Charles Lowell", "Karol Bucek"]
|
|
|
|
s.email = ['cowboyd@thefrontside.net', 'self@kares.org']
|
2013-06-16 08:36:29 -04:00
|
|
|
|
2012-08-02 05:49:28 -04:00
|
|
|
s.summary = "Rhino's jars packed for therubyrhino"
|
2012-08-02 11:22:46 -04:00
|
|
|
s.description = %q{Rhino's js.jar classes packaged as a JRuby gem.}
|
2014-02-11 11:12:05 -05:00
|
|
|
s.license = "MPL-2.0"
|
2013-06-16 08:36:29 -04:00
|
|
|
|
2012-08-02 05:49:28 -04:00
|
|
|
s.homepage = %q{http://github.com/cowboyd/therubyrhino}
|
2013-06-16 08:36:29 -04:00
|
|
|
|
2012-08-02 05:49:28 -04:00
|
|
|
s.require_paths = ["jar"]
|
|
|
|
s.files = `git ls-files`.split("\n").sort.
|
|
|
|
select { |file| file == 'therubyrhino_jar.gemspec' || file =~ /^jar\// }
|
2013-06-16 08:36:29 -04:00
|
|
|
|
2020-10-30 10:36:48 -04:00
|
|
|
end
|