ruby rework with contact form
All checks were successful
Build and Deploy to Production / build (push) Successful in 51s
Build and Deploy to Production / deploy (push) Successful in 34s

This commit is contained in:
Sergei Poljanski 2026-05-05 00:45:27 +04:00
commit 1ab09043ee
Signed by: asxpi
GPG key ID: 4F8851660FA4121B
26 changed files with 932 additions and 221 deletions

17
Gemfile Normal file
View file

@ -0,0 +1,17 @@
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'
group :development do
gem 'rerun', '~> 0.14'
end