# encoding: UTF-8 version = File.read(File.expand_path("../../VERSION", __FILE__)).strip Gem::Specification.new do |s| s.platform = Gem::Platform::RUBY s.name = 'gaku_testing' s.version = version s.summary = 'Shared testing helpers for GAKU Engine' s.description = "Testing helpers used in other engines" s.required_ruby_version = '~> 2.0.0' s.authors = ['Rei Kagetsuki', 'Nakaya Yukiharu', 'Vassil Kalkov', 'Georgi Tapalilov'] s.email = 'info@genshin.org' s.homepage = 'http://github.com/Genshin/gaku' s.files = Dir['LICENSE', 'README.md', 'app/**/*', 'config/**/*', 'lib/**/*', 'db/**/*', 'vendor/**/*'] s.test_files = `git ls-files -- {spec}/*`.split("\n") s.require_path = 'lib' s.add_dependency 'gaku_core', version end