Skip to content

Instantly share code, notes, and snippets.

@tarynsauer
Created December 12, 2013 03:50
Show Gist options
  • Save tarynsauer/7922938 to your computer and use it in GitHub Desktop.
Save tarynsauer/7922938 to your computer and use it in GitHub Desktop.
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