Initial sinatra project structure

This commit is contained in:
2024-07-03 09:32:02 -04:00
parent 55400fa30d
commit fb7f99d67b
21 changed files with 324 additions and 0 deletions

17
Gemfile Normal file
View File

@ -0,0 +1,17 @@
source 'https://rubygems.org'
gem 'sinatra', '~> 3.0'
gem 'sinatra-contrib', '~> 3.0'
gem 'puma', '~> 6.3'
gem 'sequel', '~> 5.70'
gem 'sqlite3', '~> 1.7'
group :development, :test do
gem 'rerun'
gem 'wdm', '>= 0.1.0' if Gem.win_platform?
# rubocop and extensions for code style
gem 'rubocop'
gem 'rubocop-sequel'
end