summaryrefslogtreecommitdiffstats
path: root/CLI/ruby/lib/game_of_life/universe.rb
AgeCommit message (Collapse)AuthorFilesLines
2020-12-03Minor fixes to the documentation to look bettera14m1-6/+7
2020-12-03Fix memory leakage between current and future statea14m1-1/+2
2020-12-02Update the Universe implementationa14m1-3/+33
Moving neighbors implementation from cells to universe as per the single responsibility principle that the universe should be responsible for it's object states and that the cells are only aware of their neighbors (via the universe) by passing the neighbors sub-universe to each cell
2020-12-02Implement the basics of GameOfLife universea14m1-6/+15
2020-11-29Use the more common delegate method (ruby std not rails)a14m1-1/+1
2020-11-29Add the basic Universe classa14m1-0/+26