-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path99_game.gemspec
21 lines (21 loc) · 921 Bytes
/
99_game.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Gem::Specification.new do |game|
game.name = "99_game"
game.author = 'Zachary Roth Perlmutter'
game.email = '[email protected]'
game.version = ENV['TRAVIS'] ? (ENV['TRAVIS_TAG'] == "" ? ENV['TRAVIS_JOB_ID'] : ENV['TRAVIS_TAG']) : STDIN.gets.chomp
game.summary = 'The game of 99.'
game.description = <<YIELD
This is a text-based interpretation of the card game 99. Comes with the gem in the form of an executable. Make sure to read the rules in `99_game -h` before playing.
YIELD
game.add_runtime_dependency "card_deck", "~> 4.0"
game.add_development_dependency "rspec", "~> 3.1"
game.add_development_dependency "rspec-its"
game.bindir = 'bin'
game.extra_rdoc_files = Dir.glob "*.md"
game.files = Dir.glob "lib/*.rb"
game.license = 'MIT'
game.homepage = 'https://rubygems.org/gems/99_game'
game.test_files = Dir.glob "spec/**/*.rb"
game.executables << '99_game'
game.required_ruby_version = '>= 1.9.2'
end