summaryrefslogtreecommitdiffstats
path: root/CLI/ruby/bin
diff options
context:
space:
mode:
Diffstat (limited to 'CLI/ruby/bin')
-rwxr-xr-xCLI/ruby/bin/game-of-life3
1 files changed, 2 insertions, 1 deletions
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