Files
pchwbm/Rakefile
Gregory Ballantine bfd2c98344
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Added some initial project structure and supporting tooling
2025-08-30 10:05:55 -04:00

13 lines
178 B
Ruby

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