Destructo/Gemfile

19 lines
364 B
Ruby
Raw Permalink Normal View History

2024-07-03 09:32:02 -04:00
source 'https://rubygems.org'
gem 'sinatra', '~> 3.0'
gem 'sinatra-contrib', '~> 3.0'
2024-07-03 11:20:06 -04:00
gem 'sinatra-flash', '~> 0.3.0'
2024-07-03 09:32:02 -04:00
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