Added some initial project structure and supporting tooling
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2025-08-30 10:05:55 -04:00
parent 26897dd544
commit bfd2c98344
7 changed files with 192 additions and 0 deletions

12
Rakefile Normal file
View File

@@ -0,0 +1,12 @@
require 'bundler/setup'
namespace :test do
task :unit do
ENV['RACK_ENV'] = 'testing'
system('rspec')
end
task :lint do
system('rubocop src/ spec/')
end
end