Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/enocom/ruby_life
Conway's Game of Life in Ruby
https://github.com/enocom/ruby_life
Last synced: 3 months ago
JSON representation
Conway's Game of Life in Ruby
- Host: GitHub
- URL: https://github.com/enocom/ruby_life
- Owner: enocom
- License: mit
- Created: 2013-11-02T22:37:28.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2014-08-26T01:10:06.000Z (over 10 years ago)
- Last Synced: 2024-09-23T16:45:10.357Z (3 months ago)
- Language: Ruby
- Homepage:
- Size: 508 KB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
Ruby Life
=========[![Gem Version](https://badge.fury.io/rb/ruby_life.png)](http://badge.fury.io/rb/ruby_life)
[![Build Status](https://travis-ci.org/enocom/ruby_life.png)](https://travis-ci.org/enocom/ruby_life)
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 overcrowding4. Any dead cell with exactly three live neighbours
becomes a live cell, as if by reproduction.