-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgeomerative.gemspec
27 lines (26 loc) · 1.11 KB
/
geomerative.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
25
26
27
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'geomerative/version'
Gem::Specification.new do |spec|
spec.name = 'geomerative'
spec.version = Geomerative::VERSION
spec.extra_rdoc_files = %w{README.md LICENSE.md}
spec.summary = %q{Updated geomerative library for JRubyArt}
spec.description =<<-EOS
Geomerative java library wrapped in a rubygem. Updated to use String switch
etc available since jdk8, and somewhat hacked see CHANGELOG.
EOS
spec.licenses = %w{Apache-2.0 AGPL-3.0}
spec.authors = %w{Ricard\ Marxer Martin\ Prout}
spec.email = '[email protected]'
spec.homepage = 'http://ruby-processing.github.io/geomerativegem/'
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.files << 'lib/geomerative.jar'
spec.require_paths = ['lib']
spec.add_development_dependency 'rake', '~> 13'
# spec.add_development_dependency 'maven', '~> 3.3', '>= 3.3.3'
spec.platform = 'java'
spec.requirements << 'A decent graphics card'
spec.requirements << 'java runtime >= 11+'
end