summaryrefslogtreecommitdiffstats
path: root/CLI/ruby/bin
diff options
context:
space:
mode:
authora14m <[email protected]>2020-11-29 23:55:44 +0100
committera14m <[email protected]>2020-11-29 23:55:44 +0100
commit77543134da94fa5edb0e471e1a859b4190eb3cb0 (patch)
treebfc34bf70b2975fded82e63d0a0839b196d0cfc2 /CLI/ruby/bin
parentc357c9c730440b297c1bc59d91181f62f9f3f9f7 (diff)
Fix some linting issues
Diffstat (limited to 'CLI/ruby/bin')
-rwxr-xr-xCLI/ruby/bin/game-of-life2
1 files changed, 1 insertions, 1 deletions
diff --git a/CLI/ruby/bin/game-of-life b/CLI/ruby/bin/game-of-life
index 4403598..14f5647 100755
--- a/CLI/ruby/bin/game-of-life
+++ b/CLI/ruby/bin/game-of-life
@@ -33,7 +33,7 @@ class CLI < Thor
}.merge(options)
universe = GameOfLife::Generators::Input.new(options_with_defaults)
- p universe
+ puts universe
end
class << self