From a0863f309f8abc2e37af5adbfbeee6e85eccb60c Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Mon, 30 Jun 2014 11:35:13 -0400 Subject: Gemfile: add 'pg' gem for production --- Gemfile | 6 +++++- Gemfile.lock | 2 ++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index 5a6b98d..19d27f7 100644 --- a/Gemfile +++ b/Gemfile @@ -13,9 +13,13 @@ gem 'httparty' gem 'simple_captcha2', require: 'simple_captcha' group :development, :test do - # Use sqlite3 as the database for Active Record + # Use sqlite3 as the database gem 'sqlite3' end +group :production do + # USe PostgresQL as the database + gem 'pg' +end # group :test do # gem 'rspec-rails', '2.13.1' diff --git a/Gemfile.lock b/Gemfile.lock index 2de3fea..af0cecd 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -79,6 +79,7 @@ GEM minitest (4.7.5) multi_json (1.9.2) multi_xml (0.5.5) + pg (0.17.1) polyglot (0.3.4) rack (1.5.2) rack-test (0.6.2) @@ -151,6 +152,7 @@ DEPENDENCIES jbuilder (~> 1.2) jquery-rails mailboxer + pg rails (= 4.0.2) sass-rails (~> 4.0.0) sdoc -- cgit v1.2.3