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

21 lines
769 B
Ruby
Raw Normal View History

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.description = %q{Call javascript code and manipulate javascript objects from ruby. Call ruby code and manipulate ruby objects from javascript.}
s.email = %q{cowboyd@thefrontside.net}
s.extra_rdoc_files = ["README.rdoc"]
2011-01-10 08:59:17 -05:00
s.files = `git ls-files`.split("\n")
2009-11-08 14:16:44 -05:00
s.homepage = %q{http://github.com/cowboyd/therubyrhino}
s.require_paths = ["lib"]
s.rubyforge_project = %q{therubyrhino}
2010-08-10 13:15:04 -04:00
s.summary = %q{Embed the Rhino JavaScript interpreter into JRuby}
2009-11-08 14:16:44 -05:00
2011-01-10 08:59:17 -05:00
s.add_development_dependency "rspec"
s.add_development_dependency "jruby-openssl"
2009-11-08 14:16:44 -05:00
end