Upupup/Gemfile

39 lines
642 B
Ruby

# frozen_string_literal: true
source "https://rubygems.org"
# web
gem "puma", "~> 5"
gem "sinatra", "~> 2"
gem "sinatra-contrib", "~> 2"
gem "slim", "~> 4"
# database
gem "sequel", "~> 5"
# you # comment the drivers you don't want
gem "sqlite3", "~> 1"
# gem "pg", "~> 1.2"
# security
# gem "jwt", "~> 2.2"
gem "bcrypt", "~> 3"
gem "rack_csrf", "~> 2"
# api tools
gem "doc_my_routes"
# debug and helpers
gem "colorize"
gem "activesupport", "~> 6"
# 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"
gem "async", "~> 1"