-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbaku.gemspec
28 lines (23 loc) · 1.02 KB
/
baku.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 'baku/version'
Gem::Specification.new do |spec|
spec.name = 'baku'
spec.version = Baku::VERSION
spec.authors = ['John Tuttle']
spec.email = ['[email protected]']
spec.summary = 'An Entity Component System framework for Ruby'
spec.description = 'An Entity Component System framework for Ruby'
spec.homepage = 'https://github.com/jtuttle/baku'
spec.license = 'MIT'
# use double quotes for "\x0" (https://github.com/bundler/bundler/issues/4133)
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features|examples)/})
end
spec.require_paths = ['lib']
spec.add_development_dependency 'bundler', '~> 2.1.4'
spec.add_development_dependency 'rake', '~> 13.0'
spec.add_development_dependency 'rspec', '~> 3.9'
spec.add_development_dependency 'pry-byebug', '~> 3.9.0'
spec.add_dependency 'miru', '~> 0.1.0'
end