1
0
Fork 0

Add PostgreSQL

This commit is contained in:
Alex Kotov 2023-05-10 14:32:59 +04:00
parent f958347563
commit 91a65d0274
Signed by: kotovalexarian
GPG Key ID: 553C0EBBEB5D5F08
2 changed files with 2 additions and 0 deletions

View File

@ -48,6 +48,7 @@ Gem::Specification.new do |spec|
spec.add_runtime_dependency 'json', '~> 2.6', '>= 2.6.3'
spec.add_runtime_dependency 'logger', '~> 1.5', '>= 1.5.3'
spec.add_runtime_dependency 'pathname', '~> 0.2.1'
spec.add_runtime_dependency 'pg', '~> 1.5', '>= 1.5.3'
spec.add_runtime_dependency 'puma', '~> 6.2', '>= 6.2.2'
spec.add_runtime_dependency 'rack', '~> 2.2', '>= 2.2.7'
spec.add_runtime_dependency 'rack-protection', '~> 3.0', '>= 3.0.6'

View File

@ -5,6 +5,7 @@ require 'erb'
require 'json'
require 'logger'
require 'pathname'
require 'pg'
require 'puma'
require 'rack'
require 'rack/handler/puma'