-
Notifications
You must be signed in to change notification settings - Fork 30
/
jrubyfx.gemspec
23 lines (20 loc) · 994 Bytes
/
jrubyfx.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
require_relative 'lib/jrubyfx/version'
# This must be assigned to the global spec variable as its relied upon in the Rakefile.
$spec = Gem::Specification.new do |s|
s.name = "jrubyfx"
s.version = JRubyFX::VERSION
s.platform = 'java'
s.authors = ["Patrick Plenefisch", "Thomas E Enebo", "Hiroshi Nakamura", "Hiro Asari"]
s.homepage = "https://github.com/jruby/jrubyfx"
s.summary = "JavaFX for JRuby with FXML"
s.description = "Enables JavaFX with FXML controllers and application in pure ruby"
s.rubyforge_project = "jrubyfx"
s.add_development_dependency "rake"
s.add_development_dependency "rspec"
s.files = Dir.glob("lib/**/*") + %w(LICENSE README.md)
s.executables = ['jrubyfx-generator', 'jrubyfx-jarify', 'jrubyfx-compile']
s.require_path = 'lib'
s.license = 'Apache-2.0'
end