robie1373/warcards

View on GitHub
warcards.gemspec

Summary

Maintainability
Test Coverage
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/warcards/version', __FILE__)

Gem::Specification.new do |gem|
  gem.authors     = ["Robie Lutsey"]
  gem.email       = ["robie1373@gmail.com"]
  gem.description = %q{An addictive game of War! to help slog through flash-card memorization}
  gem.summary     = %q{Play a game of War! against the computer. If your card is higher, you get a chance to answer the flash-card question. If you get it correct, you win the round! By the time you win the game, you should really know your stuff!}
  gem.homepage    = "http://robie1373.github.com/warcards"

  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.name          = "warcards"
  gem.require_paths = ["lib"]
  gem.version       = Cardgame::VERSION

  # specify any dependencies here
  gem.add_development_dependency 'rb-fsevent', '~>0.9.1'
  gem.add_development_dependency 'minitest-spec', '~>0.0.2'
  gem.add_development_dependency 'minitest-reporters', '~>0.9.0'
  gem.add_development_dependency 'minitest-growl'
  gem.add_development_dependency 'guard', '~>1.2.3'
  gem.add_development_dependency 'guard-minitest', '~>0.5.0'
  gem.add_development_dependency 'terminal-notifier-guard'
  #gem.add_development_dependency 'growl', '~>1.0.3'
  gem.add_development_dependency 'turn', '~>0.9.6'
  gem.add_development_dependency 'simplecov', '~>0.6'

  # specify run dependencies here
  gem.add_dependency 'bundler', "~>1.1"
  gem.add_dependency 'querinator'
  gem.add_dependency 'rake', '~>0.9.2'

end