https://github.com/pseudomuto/game_of_life
A simple implementation of Conway's Game of Life in Ruby
https://github.com/pseudomuto/game_of_life
Last synced: about 1 year ago
JSON representation
A simple implementation of Conway's Game of Life in Ruby
- Host: GitHub
- URL: https://github.com/pseudomuto/game_of_life
- Owner: pseudomuto
- Created: 2013-08-07T14:43:19.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2013-08-08T14:29:56.000Z (almost 13 years ago)
- Last Synced: 2025-01-30T14:52:45.415Z (over 1 year ago)
- Language: Ruby
- Size: 125 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Conway's Game of Life
[](https://travis-ci.org/pseudomuto/game_of_life)
I went to a Ruby Hack Night and had some trouble getting this working by
the time I left. So I thought I'd sleep on it and give it a shot.
There were two specific things that helped a lot for me:
* RSpec - without tests, I got stuck in a cycle of fixing/breaking things
* [inject](http://ruby-doc.org/core-2.0/Enumerable.html#method-i-inject) - pretty much the coolest Ruby method I've seen yet!
# This project uses:
* [TomDoc](http://tomdoc.org/)
* [RSpec](http://rspec.info/)
* [Guard](https://github.com/guard/guard)
* [Travis CI](https://travis-ci.org/)