First draft of example single file roda app
This commit is contained in:
parent
671955a386
commit
514108bfc9
8 changed files with 143 additions and 2 deletions
15
Gemfile
Normal file
15
Gemfile
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue