-
Notifications
You must be signed in to change notification settings - Fork 13
/
dxopal.gemspec
28 lines (24 loc) · 960 Bytes
/
dxopal.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require_relative 'lib/dxopal/version.rb'
Gem::Specification.new do |spec|
spec.name = "dxopal"
spec.version = DXOpal::VERSION
spec.authors = ["Yutaka HARA"]
spec.email = ["[email protected]"]
spec.summary = %q{Game development framework for Opal}
spec.homepage = "https://yhara.github.io/dxopal/"
spec.metadata = {
"source_code_uri" => "https://github.com/yhara/dxopal"
}
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(examples|vendor|test|spec|features)/})
end
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_runtime_dependency "thor", "~> 0.20"
spec.add_runtime_dependency "rack", "~> 2.0"
end