-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathmittsu.gemspec
33 lines (27 loc) · 1.21 KB
/
mittsu.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
29
30
31
32
33
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'mittsu/version'
Gem::Specification.new do |spec|
spec.name = "mittsu"
spec.version = Mittsu::VERSION
spec.authors = ["Danielle Smith"]
spec.email = ["danini@hey.com"]
spec.summary = %q{3D Graphics Library for Ruby}
spec.description = %q{Mittsu is a 3D Graphics Library for Ruby, based heavily on Three.js}
spec.homepage = "https://github.com/danini-the-panini/mittsu"
spec.license = "MIT"
spec.metadata = {
"bug_tracker" => "https://github.com/danini-the-panini/mittsu/issues"
}
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{(^(test)/|\.sh$)}) }
spec.require_paths = ["lib"]
spec.required_ruby_version = '>= 2.6.0'
spec.add_runtime_dependency 'chunky_png'
spec.add_development_dependency 'bundler', '~> 2.0'
spec.add_development_dependency 'rake', '~> 13.0'
spec.add_development_dependency 'minitest', '~> 5.0'
spec.add_development_dependency 'minitest-reporters', '~> 1.7'
spec.add_development_dependency 'benchmark-ips', '~> 2.14'
spec.add_development_dependency 'simplecov', '0.17.1'
end