Arthur Poulet
5a24cdb6b7
All checks were successful
continuous-integration/drone/push Build is passing
37 lines
655 B
Ruby
37 lines
655 B
Ruby
# frozen_string_literal: true
|
|
|
|
source "https://rubygems.org"
|
|
|
|
# web
|
|
gem "puma", "~> 5.3"
|
|
gem "sinatra", "~> 2.1"
|
|
gem "sinatra-contrib", "~> 2.1"
|
|
gem "slim", "~> 4.1"
|
|
|
|
# database
|
|
gem "sequel", "~> 5.43"
|
|
# you # comment the drivers you don't want
|
|
gem "sqlite3", "~> 1.4"
|
|
# gem "pg", "~> 1.2"
|
|
|
|
# security
|
|
gem "jwt", "~> 2.2"
|
|
gem "bcrypt", "~> 3.1"
|
|
gem "rack_csrf", "~> 2.6"
|
|
|
|
# api tools
|
|
gem "doc_my_routes"
|
|
|
|
# debug and helpers
|
|
gem "colorize", "~> 0.8.1"
|
|
gem "activesupport", "= 6.1.3.1"
|
|
|
|
# tests
|
|
group :test do
|
|
gem "pry", "~> 0.14.1"
|
|
gem "rack-test", "~> 1.1", require: false
|
|
# gem "simplecov", "~> 0.21.2", require: false
|
|
end
|
|
|
|
gem "dotenv", "~> 2.7"
|