An open API service indexing awesome lists of open source software.

https://github.com/overbryd/tic-tac-toe


https://github.com/overbryd/tic-tac-toe

Last synced: 7 months ago
JSON representation

Awesome Lists containing this project

README

          

# TicTacToe

* Setup with Bundler `$ bundle`
* Run tests with RSpec `$ rspec spec/tic_tac_toe_spec.rb`
* Use in your code:

```ruby
tic_tac_toe = TicTacToe.new([
%w[X - O],
%w[X O -],
%w[X O -]
])
tic_tac_toe.winner
# => "X"
```