From b02d9ac9c06ce2ea1046e6b71d913eee099094c5 Mon Sep 17 00:00:00 2001 From: Rob Nugen Date: Sat, 17 Dec 2016 12:19:56 +0900 Subject: [PATCH] Near the end of https://www.railstutorial.org/book/beginning#sec-bundler The Gemfile in Listing 1.5 doesn't include group :production do gem 'pg', '0.18.4' end These lines are added in Listing 1.14 --- hello_app/Gemfile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/hello_app/Gemfile b/hello_app/Gemfile index e9954e2..e0581b5 100644 --- a/hello_app/Gemfile +++ b/hello_app/Gemfile @@ -21,9 +21,5 @@ group :development do gem 'spring-watcher-listen', '2.0.0' end -group :production do - gem 'pg', '0.18.4' -end - # Windows does not include zoneinfo files, so bundle the tzinfo-data gem -gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby] \ No newline at end of file +gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]