A CLI clone of the classic game, Minesweeper. Built using test-driven development and object-oriented design principles. This is the first project in Raise.dev LIVE's Tuesday Driven Development series.
git clone https://github.com/raisedevs-live/minesweeper.git
cd minesweeper
ruby bin/minesweeper
Follow the prompts in your terminal to complete the game. Try to clear the field before you find a bomb! 💣
Change the height, width, and the number of mines by specifying those values as you start the game.
WIDTH=integer ruby bin/minesweeper
HEIGHT=integer ...
MINE_COUNT=integer ...