summaryrefslogtreecommitdiffstats
path: root/CLI/ruby/bin
diff options
context:
space:
mode:
authora14m <[email protected]>2020-11-29 21:19:31 +0100
committera14m <[email protected]>2020-11-29 23:29:41 +0100
commit8f88de4e158681f6321ecb2348005424108e2bd9 (patch)
tree3d898de350328438eeacea3bc2d9a1869f95b8c6 /CLI/ruby/bin
parent8436fb52f30718b595f8f39a88f063780f7deda9 (diff)
Add the basics for input generator
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