asxpio/Gemfile
Sergei Poljanski 2ea46b12e6
gems: add pg, sequel, prawn, aws-sdk-s3 for invoicing
- pg + sequel: connect to the storage stack's Postgres.
- prawn + prawn-table: render invoice PDFs.
- aws-sdk-s3: upload PDFs to MinIO and mint presigned download URLs.

Also pulls libpq-dev into the Docker build (for the pg gem) and the
postgresql client lib into the Nix dev shell.
2026-05-26 17:29:21 +03:00

23 lines
582 B
Ruby

source 'https://rubygems.org'
ruby '>= 3.1'
gem 'sinatra', '~> 4.2'
gem 'sinatra-contrib', '~> 4.2'
gem 'puma', '~> 6.6'
gem 'rack', '~> 3.2'
gem 'rack-protection', '~> 4.2'
gem 'rack-session', '~> 2.1'
gem 'rackup', '~> 2.3'
gem 'erubi', '~> 1.13'
gem 'mail', '~> 2.8'
gem 'dotenv', '~> 3.1'
gem 'pg', '~> 1.5'
gem 'sequel', '~> 5.86'
gem 'prawn', '~> 2.5'
gem 'prawn-table', '~> 0.2'
gem 'aws-sdk-s3', '~> 1.170'
group :development do
gem 'rerun', '~> 0.14'
end