diff options
Diffstat (limited to 'CLI/ruby')
| -rw-r--r-- | CLI/ruby/lib/game_of_life.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/CLI/ruby/lib/game_of_life.rb b/CLI/ruby/lib/game_of_life.rb index f8eba24..d61834a 100644 --- a/CLI/ruby/lib/game_of_life.rb +++ b/CLI/ruby/lib/game_of_life.rb @@ -7,6 +7,9 @@ require "game_of_life/cell" # Game of Life module entry point module GameOfLife + # Base Error class + class Error < StandardError; end + class << self # Generate a universe based on the options (from an input file/URI) or using a random/passed seed # This method also sets the Classes/Modules constants for the run defining the options for |
