Initial sinatra project structure
This commit is contained in:
17
Gemfile
Normal file
17
Gemfile
Normal 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
|
Reference in New Issue
Block a user