summaryrefslogtreecommitdiffstats
path: root/CLI/ruby
diff options
context:
space:
mode:
authora14m <[email protected]>2020-12-06 16:05:38 +0100
committera14m <[email protected]>2020-12-06 16:05:38 +0100
commitc5e225809aecedcd2f6260fd00e29179bf00c31d (patch)
tree6d7cf64b75aebad2a2e978f7b7c969eaf242edbb /CLI/ruby
parenta9483c8b445765893ac784f4e016780c2ac95e69 (diff)
Add the error message to the NotImplementedError
Diffstat (limited to 'CLI/ruby')
-rw-r--r--CLI/ruby/lib/game_of_life/generators/seed.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/CLI/ruby/lib/game_of_life/generators/seed.rb b/CLI/ruby/lib/game_of_life/generators/seed.rb
index 43dea04..60be366 100644
--- a/CLI/ruby/lib/game_of_life/generators/seed.rb
+++ b/CLI/ruby/lib/game_of_life/generators/seed.rb
@@ -12,7 +12,7 @@ module GameOfLife
# @option options [Numeric] "height" (floored) and used as the height of the universe
# @return [GameOfLife::Universe] populated with the parsed input
def new(options)
- fail NotImplementedError
+ fail NotImplementedError, "Seed option isn't implemented yet, please use --input option"
end
end
end