Commit 9a11efae by Tô Ngọc Ánh

Update gemfile database group

parent 7460fa09
Pipeline #650 failed with stages
in 0 seconds
...@@ -5,8 +5,6 @@ ruby '2.6.6' ...@@ -5,8 +5,6 @@ ruby '2.6.6'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 6.0.3', '>= 6.0.3.2' gem 'rails', '~> 6.0.3', '>= 6.0.3.2'
# Use sqlite3 as the database for Active Record
gem 'sqlite3', '~> 1.4'
# Use Puma as the app server # Use Puma as the app server
gem 'puma', '~> 4.1' gem 'puma', '~> 4.1'
# Use SCSS for stylesheets # Use SCSS for stylesheets
...@@ -31,6 +29,8 @@ gem 'bootsnap', '>= 1.4.2', require: false ...@@ -31,6 +29,8 @@ gem 'bootsnap', '>= 1.4.2', require: false
group :development, :test do group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console # Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw] gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
# Use sqlite3 as the database for Active Record
gem 'sqlite3', '~> 1.4'
end end
group :development do group :development do
...@@ -50,5 +50,9 @@ group :test do ...@@ -50,5 +50,9 @@ group :test do
gem 'webdrivers' gem 'webdrivers'
end end
group :production do
gem 'pg', '~> 1.2', '>= 1.2.3'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby] gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
...@@ -101,6 +101,7 @@ GEM ...@@ -101,6 +101,7 @@ GEM
nio4r (2.5.2) nio4r (2.5.2)
nokogiri (1.10.9) nokogiri (1.10.9)
mini_portile2 (~> 2.4.0) mini_portile2 (~> 2.4.0)
pg (1.2.3)
public_suffix (4.0.5) public_suffix (4.0.5)
puma (4.3.5) puma (4.3.5)
nio4r (~> 2.0) nio4r (~> 2.0)
...@@ -203,6 +204,7 @@ DEPENDENCIES ...@@ -203,6 +204,7 @@ DEPENDENCIES
capybara (>= 2.15) capybara (>= 2.15)
jbuilder (~> 2.7) jbuilder (~> 2.7)
listen (~> 3.2) listen (~> 3.2)
pg (~> 1.2, >= 1.2.3)
puma (~> 4.1) puma (~> 4.1)
rails (~> 6.0.3, >= 6.0.3.2) rails (~> 6.0.3, >= 6.0.3.2)
sass-rails (>= 6) sass-rails (>= 6)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment