# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) Gem::Specification.new do |spec| spec.name = "textbringer-startrek" spec.version = "1.0.0" spec.authors = ["Shugo Maeda"] spec.email = ["shugo@ruby-lang.org"] spec.summary = "Star Trek animation for Textbringer." spec.description = "Star Trek animation for Textbringer." spec.homepage = "https://github.com/shugo/textbringer-startrek" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^(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 "textbringer" spec.add_development_dependency "bundler" spec.add_development_dependency "rake", "~> 12.0" end