Created
December 12, 2013 03:50
-
-
Save tarynsauer/7922938 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Gem::Specification.new do |s| | |
s.name = 'ruby_ttt' | |
s.version = '0.0.2' | |
s.summary = "Tic-tac-toe game with computer player AI option." | |
s.description = "A tic-tac-toe game with human vs. human, human vs. computer, and computer vs. computer options. When 'hard' level is selected, the computer is unbeatable and the AI uses the minimax algorithm." | |
s.authors = ["Taryn Sauer"] | |
s.email = '[email protected]' | |
s.homepage = 'http://rubygems.org/gems/ruby_ttt' | |
s.add_development_dependency "rspec" | |
s.files = Dir.glob("{lib, spec}/**/*") | |
s.require_path = 'lib' | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment