LifePex/Gemfile

38 lines
644 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
# you # comment what you don't want
gem "sequel", "~> 5.43"
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 "pry", "~> 0.14.1"
gem "colorize", "~> 0.8.1"
gem "activesupport", "= 6.1.3.1"
# tests
group :test do
#gem "capybara", "~> 3.35"
#gem "rspec", "~> 3.10"
#gem "rspec-sinatra", "~> 0.1.2"
end
gem "rack-test", "~> 1.1"