From 8f88de4e158681f6321ecb2348005424108e2bd9 Mon Sep 17 00:00:00 2001 From: a14m Date: Sun, 29 Nov 2020 21:19:31 +0100 Subject: Add the basics for input generator --- CLI/ruby/bin/game-of-life | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'CLI/ruby/bin') diff --git a/CLI/ruby/bin/game-of-life b/CLI/ruby/bin/game-of-life index 8abd1e0..4403598 100755 --- a/CLI/ruby/bin/game-of-life +++ b/CLI/ruby/bin/game-of-life @@ -32,7 +32,8 @@ class CLI < Thor "seed" => rand(100_000), }.merge(options) - GameOfLife::Universe.new(options_with_defaults).run + universe = GameOfLife::Generators::Input.new(options_with_defaults) + p universe end class << self -- cgit v1.2.3