Initial project structure with dry/cli
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2023-10-30 15:57:44 -04:00
parent 26897dd544
commit 1d7b9c8f0f
6 changed files with 137 additions and 0 deletions

15
Rakefile Normal file
View File

@ -0,0 +1,15 @@
require 'bundler/setup'
task :run do
system("ruby src/pchwbm.rb")
end
namespace :test do
task :all do
Rake::Task['test:rubocop'].invoke()
end
task :rubocop do
system("rubocop src/")
end
end