summaryrefslogtreecommitdiffstats
path: root/CLI/ruby
diff options
context:
space:
mode:
Diffstat (limited to 'CLI/ruby')
-rw-r--r--CLI/ruby/lib/game_of_life.rb6
1 files changed, 5 insertions, 1 deletions
diff --git a/CLI/ruby/lib/game_of_life.rb b/CLI/ruby/lib/game_of_life.rb
index 33bbb74..a50a50f 100644
--- a/CLI/ruby/lib/game_of_life.rb
+++ b/CLI/ruby/lib/game_of_life.rb
@@ -5,5 +5,9 @@ require "game_of_life/universe"
module GameOfLife
class Error < StandardError; end
- # Your code goes here...
+
+ module Generators
+ autoload :Input, "game_of_life/generators/input.rb"
+ autoload :Seed, "game_of_life/generators/seed.rb"
+ end
end