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 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'Gemfile') 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' -- cgit v1.2.3