Project

ruby_life

0.0
No commit activity in last 3 years
No release in over 3 years
A command line version of Conway's Game of Life
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.3
>= 0
>= 0
 Project Readme

Ruby Life

Gem Version

Build Status

A test-driven implementation of Conway's Game of Life in Ruby.

Usage

  1. Install with gem install ruby_life

  2. Run it with ruby_life

The Rules

  1. Any live cell with fewer than two live neighbours dies, as if caused by under-population.

  2. Any live cell with two or three live neighbours lives on to the next generation.

  3. Any live cell with more than three live neighbours dies, as if by overcrowding

  4. Any dead cell with exactly three live neighbours becomes a live cell, as if by reproduction.