-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmath_demo.gemspec
28 lines (27 loc) · 1.13 KB
/
math_demo.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
28
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'math_demo/version'
require 'rake'
Gem::Specification.new do |spec|
spec.name = 'math_demo'
spec.version = MathDemo::VERSION
spec.author = 'monkstone'
spec.email = '[email protected]'
spec.description = <<-EOS
Geomerative art using the ruby Matrix class to generate circumcircles around
triangles, created from moving points
EOS
spec.summary = %q{An example of a propane app as gem.}
spec.homepage = "https://ruby-processing.github.io/math_demo/"
spec.post_install_message = %q{Congratulations you've just installed propane.}
spec.license = 'GPL-3.0'
spec.files = FileList['bin/**/*', 'lib/**/*'].exclude(/jar/).to_a
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 2.6'
spec.add_runtime_dependency 'propane', '~> 3.11'
spec.platform = 'java'
spec.add_development_dependency 'rake', '~> 13'
spec.add_development_dependency 'minitest', '~> 5.10'
end