From 59f8c95c53e56622949c1273c3b45e413dc8e5d1 Mon Sep 17 00:00:00 2001 From: Gwenhael Le Moine Date: Tue, 22 Nov 2022 11:49:53 +0100 Subject: [PATCH] add Rakefile --- ruby/Rakefile | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 ruby/Rakefile diff --git a/ruby/Rakefile b/ruby/Rakefile new file mode 100644 index 0000000..7843f7c --- /dev/null +++ b/ruby/Rakefile @@ -0,0 +1,7 @@ +task :gem do + sh 'gem build minehunt.gemspec' +end + +task :run do + sh 'ruby -Ilib bin/minehunt' +end