| Age | Commit message (Collapse) | Author | 
 | 
We shouldn't be requiring all our files & classes in the spec_helper. It
should just be used for test setup. We can require the modules we need
for testing directly in the test files.
 | 
 | 
Take string coordinates in the form ":integer:,:integer:" and convert
them to [integer, integer]. We'll be using these converted coordinate
values to place a piece on the board.
 | 
 | 
Don't print the grid directly. We'll do this in a separate display
method or game loop area.
 | 
 | 
The board starts as a grid of dots represented by a 2-dimensional array.
 | 
 | 
Use specs for testing, create a spec for the Board class.
Simple functionality and test to print a grid of dots for the board.
 |