First draft of example single file roda app

This commit is contained in:
James 2025-07-02 03:38:16 -05:00
parent 671955a386
commit 514108bfc9
8 changed files with 143 additions and 2 deletions

15
Gemfile Normal file
View file

@ -0,0 +1,15 @@
source "https://rubygems.org"
gem "roda"
# change to gunicorn or passenger if you prefer:
gem "puma"
group :development, :test do
gem "rerun"
end
group :test do
gem 'capybara'
gem 'minitest'
end