-
Notifications
You must be signed in to change notification settings - Fork 1
/
dienashorner.gemspec
24 lines (18 loc) · 950 Bytes
/
dienashorner.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# -*- encoding: utf-8 -*-
Gem::Specification.new do |gem|
gem.name = 'therubyrhino becomes dienashorner'.split.last
gem.authors = ['Karol Bucek']
gem.email = ['[email protected]']
gem.licenses = ['Apache-2.0']
path = File.expand_path("lib/nashorn/version.rb", File.dirname(__FILE__))
gem.version = File.read(path).match( /.*VERSION\s*=\s*['"](.*)['"]/m )[1]
gem.summary = %q{The Nashorn JavaScript interpreter for JRuby}
gem.description = %q{Nashorn, a Rhino's sucessor, allows embeded JavaScript interaction from Ruby.}
gem.homepage = "https://github.com/kares/dienashorner"
gem.require_paths = ["lib"]
gem.files = `git ls-files`.split("\n").sort
gem.test_files = `git ls-files -- {spec}/*`.split("\n")
gem.extra_rdoc_files = %w[ README.md LICENSE ]
gem.add_development_dependency "rspec", "~> 2.14.1"
gem.add_development_dependency "mocha", "~> 0.13.3"
end