Simple Ruby implementation of Conway's game of life.
./bin/conway
A simple implementation of Conway's game of life in Ruby developed during the Global Day of Code Retreat 2016 in Karlsruhe.
Bugs:
- Rule 4 is missing.
Things which need to be done in further version:
- Documentation.
- Seed method to initialize board either randomly or from a file.
- Command line argument for size and seed.
- Make it more »Ruby-ish«, esp. try to get rid of the while-loops in Board::show and Board::next_generation.
- Avoid using direct accessing the array of cells.
- Taking style guide / Rubocop into account.