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