summaryrefslogtreecommitdiffstats
path: root/CLI/ruby/bin
diff options
context:
space:
mode:
authora14m <[email protected]>2020-12-03 15:06:01 +0100
committera14m <[email protected]>2020-12-03 15:07:49 +0100
commit1404a38b5b6fbfe971729d24bd46e10b8d2da9fc (patch)
tree831382d45a92ca4effb8f4a0410cbda209212a3f /CLI/ruby/bin
parent27b78771d819c4d9c1fe8537429d16fbc41d6a34 (diff)
Add the seed generator place holder class and test (and CLI error)
Diffstat (limited to 'CLI/ruby/bin')
-rwxr-xr-xCLI/ruby/bin/game-of-life2
1 files changed, 2 insertions, 0 deletions
diff --git a/CLI/ruby/bin/game-of-life b/CLI/ruby/bin/game-of-life
index 28864ad..b490e1a 100755
--- a/CLI/ruby/bin/game-of-life
+++ b/CLI/ruby/bin/game-of-life
@@ -60,4 +60,6 @@ begin
CLI.start(ARGV)
rescue SystemExit, Interrupt
"Do nothing when user exits with Interrupt (CMD/Ctrl + C)"
+rescue NotImplementedError
+ puts "Seed option isn't implemented yet, please use --input option"
end