2009-11-08 14:16:44 -05:00
|
|
|
# -*- encoding: utf-8 -*-
|
2011-01-10 08:59:17 -05:00
|
|
|
$:.push File.expand_path("../lib", __FILE__)
|
|
|
|
require "rhino/version"
|
2009-11-08 14:16:44 -05:00
|
|
|
|
|
|
|
Gem::Specification.new do |s|
|
|
|
|
s.name = %q{therubyrhino}
|
2011-01-10 08:59:17 -05:00
|
|
|
s.version = Rhino::VERSION
|
2009-11-08 14:16:44 -05:00
|
|
|
s.authors = ["Charles Lowell"]
|
2010-08-10 13:15:04 -04:00
|
|
|
s.email = %q{cowboyd@thefrontside.net}
|
2013-06-16 08:30:03 -04:00
|
|
|
|
2012-08-02 05:49:28 -04:00
|
|
|
s.summary = %q{Embed the Rhino JavaScript interpreter into JRuby}
|
|
|
|
s.description = %q{Call javascript code and manipulate javascript objects from ruby. Call ruby code and manipulate ruby objects from javascript.}
|
2009-11-08 14:16:44 -05:00
|
|
|
s.homepage = %q{http://github.com/cowboyd/therubyrhino}
|
|
|
|
s.rubyforge_project = %q{therubyrhino}
|
2013-06-16 08:30:03 -04:00
|
|
|
s.extra_rdoc_files = ["README.md"]
|
2014-02-11 11:12:05 -05:00
|
|
|
s.license = "MIT"
|
2013-06-16 08:30:03 -04:00
|
|
|
|
2012-08-02 05:49:28 -04:00
|
|
|
s.require_paths = ["lib"]
|
|
|
|
s.files = `git ls-files`.split("\n").sort.
|
|
|
|
reject { |file| file == 'therubyrhino_jar.gemspec' || file =~ /^jar\// }
|
2009-11-08 14:16:44 -05:00
|
|
|
|
2012-08-02 05:49:28 -04:00
|
|
|
s.add_dependency "therubyrhino_jar", '>= 1.7.3'
|
2013-06-16 08:30:03 -04:00
|
|
|
|
2014-02-20 14:38:45 -05:00
|
|
|
s.add_development_dependency "rspec", "~> 2.14.1"
|
2013-03-11 03:46:18 -04:00
|
|
|
s.add_development_dependency "mocha", "~> 0.13.3"
|
2009-11-08 14:16:44 -05:00
|
|
|
end
|