diff options
| author | a14m <[email protected]> | 2020-11-27 17:02:40 +0100 |
|---|---|---|
| committer | a14m <[email protected]> | 2020-11-27 17:55:36 +0100 |
| commit | 8185d66664367eab60edb3ab27103d22c1631769 (patch) | |
| tree | 6b2b8f68a3a559e8f24d65003ae17848e3111e5d /CLI/ruby/lib | |
| parent | d1a020777af347f59b73b58f0ce96bb360dc6b35 (diff) | |
Initial commit of the ruby gem
Diffstat (limited to 'CLI/ruby/lib')
| -rw-r--r-- | CLI/ruby/lib/game_of_life.rb | 8 | ||||
| -rw-r--r-- | CLI/ruby/lib/game_of_life/version.rb | 5 |
2 files changed, 13 insertions, 0 deletions
diff --git a/CLI/ruby/lib/game_of_life.rb b/CLI/ruby/lib/game_of_life.rb new file mode 100644 index 0000000..4cff146 --- /dev/null +++ b/CLI/ruby/lib/game_of_life.rb @@ -0,0 +1,8 @@ +# frozen_string_literal: true + +require "game_of_life/version" + +module GameOfLife + class Error < StandardError; end + # Your code goes here... +end diff --git a/CLI/ruby/lib/game_of_life/version.rb b/CLI/ruby/lib/game_of_life/version.rb new file mode 100644 index 0000000..5d13768 --- /dev/null +++ b/CLI/ruby/lib/game_of_life/version.rb @@ -0,0 +1,5 @@ +# frozen_string_literal: true + +module GameOfLife + VERSION = "0.1.0" +end |
