forked from awilliams/RTanque
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrtanque.gemspec
28 lines (24 loc) · 1012 Bytes
/
rtanque.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'rtanque/version'
Gem::Specification.new do |gem|
gem.name = "rtanque"
gem.version = RTanque::VERSION
gem.authors = ["Adam Williams"]
gem.email = ["[email protected]"]
gem.description = %q{Simple 2D tank game. Program your own tank to do battle with others.}
gem.summary = gem.description
gem.homepage = "https://github.com/awilliams/RTanque"
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.add_dependency 'gosu'
gem.add_dependency 'configuration'
gem.add_dependency 'octokit'
gem.add_dependency 'thor'
gem.add_development_dependency 'pry'
gem.add_development_dependency 'rspec'
gem.add_development_dependency 'rspec-mocks'
end