summaryrefslogtreecommitdiff
path: root/Gemfile
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2014-06-30 11:35:13 -0400
committerLuke Shumaker <lukeshu@sbcglobal.net>2014-06-30 11:35:13 -0400
commita0863f309f8abc2e37af5adbfbeee6e85eccb60c (patch)
treeec7aee3c3d8bd1331eeb4c8c044403558991e233 /Gemfile
parent9e95d2b7283e3d49b88cea3a8be2b89ac9f165f9 (diff)
Gemfile: add 'pg' gem for production
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile6
1 files changed, 5 insertions, 1 deletions
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'