add Rakefile

This commit is contained in:
Gwenhael Le Moine 2022-11-22 11:49:53 +01:00
parent 160b635035
commit 59f8c95c53
No known key found for this signature in database
GPG key ID: FDFE3669426707A7

7
ruby/Rakefile Normal file
View file

@ -0,0 +1,7 @@
task :gem do
sh 'gem build minehunt.gemspec'
end
task :run do
sh 'ruby -Ilib bin/minehunt'
end