Simple repo for testing testing
# gem install bundler
# bundle install
# irb -I lib
require 'tictactoe'
ttt = TicTacToe.new([["X", "X", "X"],
["O", "O", "_"],
["O", "_", "_"]])
ttt.winner # => "X"
To run tests:
rake test