# frozen_string_literal: true # # On Debian/Ubuntu the dependencies are all packaged, and that is how the # systemd unit runs — no bundler involved: # # apt install ruby-full ruby-sqlite3 ruby-sinatra ruby-bcrypt \ # ruby-rack ruby-rack-protection ruby-json puma # # This Gemfile is here for anyone who'd rather use bundler, and to pin the # versions the code was written against. Sinatra 4 moved sessions around, hence # the ~> 3.0. source 'https://rubygems.org' gem 'bcrypt', '~> 3.1' gem 'puma', '~> 6.0' gem 'rack', '~> 2.2' gem 'sinatra', '~> 3.0' gem 'sqlite3', '~> 1.4'