Cool but simple web-app mobile-compatible to gamify your life and self-improvement
https://lifepex.sceptique.eu/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
655 B
36 lines
655 B
# 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"
|
|
|