-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpbox2d.gemspec
24 lines (23 loc) · 1.11 KB
/
pbox2d.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'pbox2d/version'
Gem::Specification.new do |spec|
spec.name = 'pbox2d'
spec.version = Pbox2d::VERSION
spec.license = 'BSD-2-Clause'
spec.extra_rdoc_files = ['README.md', 'LICENSE.md']
spec.authors = ['Martin Prout']
spec.email = ['mamba2928@yahoo.co.uk']
spec.summary = %q{jbox2d wrapped in a gem for JRubyArt, PiCrate and propane}
spec.description = <<-EOF
"An exemplar for making java libraries available as a gem, for use in JRubyArt /propane. Features a polyglot maven build, and also demonstrates how to create an interface so avoid needing explicit calls to java reflection."
EOF
spec.homepage = 'https://ruby-processing.github.io/jbox2d'
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.files << 'lib/box2d.jar'
spec.require_paths = ['lib']
spec.add_development_dependency "rake", "~> 13.0"
spec.add_development_dependency "minitest", "~> 5.14"
spec.platform='java'
end