Add missing postgres gem
continuous-integration/drone/push Build is failing Details

Needed in production
This commit is contained in:
Basti 2020-11-21 14:12:09 +01:00
parent 8493dfcf9b
commit 8bd69b2adb
Signed by untrusted user: basti
GPG Key ID: 9F88009D31D99C72
2 changed files with 8 additions and 2 deletions

View File

@ -3,8 +3,6 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 6.0.3', '>= 6.0.3.4'
# Use sqlite3 as the database for Active Record
gem 'sqlite3', '~> 1.4'
# Use Puma as the app server
gem 'puma', '~> 4.1'
# Use SCSS for stylesheets
@ -31,6 +29,8 @@ gem 'devise_ldap_authenticatable'
gem 'net-ldap'
group :development, :test do
# Use sqlite3 as the database for Active Record
gem 'sqlite3', '~> 1.4'
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
end
@ -53,5 +53,9 @@ group :test do
gem 'database_cleaner'
end
group :production do
# Use postgresql as the database for Active Record
gem 'pg', '~> 1.2.3'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]

View File

@ -131,6 +131,7 @@ GEM
nokogiri (1.10.10)
mini_portile2 (~> 2.4.0)
orm_adapter (0.5.0)
pg (1.2.3)
public_suffix (4.0.6)
puma (4.3.6)
nio4r (~> 2.0)
@ -255,6 +256,7 @@ DEPENDENCIES
letter_opener_web
listen (~> 3.2)
net-ldap
pg (~> 1.2.3)
puma (~> 4.1)
rails (~> 6.0.3, >= 6.0.3.4)
rspec-rails