Skip to content
This repository was archived by the owner on Nov 17, 2018. It is now read-only.

Commit 187362e

Browse files
committed
Use postgres in production
1 parent 7eef6d8 commit 187362e

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

Gemfile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,20 @@ gem 'rails', '3.2.11'
55
# Bundle edge Rails instead:
66
# gem 'rails', :git => 'git://github.com/rails/rails.git'
77

8-
gem 'sqlite3'
98
gem "figaro" # for local configuration settings that shouldn't be shared on GitHub
109
gem "thin" # use thin as a webserver
1110
gem "oauth-plugin", "~> 0.4.0"
1211

1312
group :development do
13+
gem 'sqlite3'
1414
gem "better_errors"
1515
gem "binding_of_caller"
1616
end
1717

18+
group :production do
19+
gem 'pg'
20+
end
21+
1822
# Gems used only for assets and not required
1923
# in production environments by default.
2024
group :assets do

Gemfile.lock

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@ GEM
9292
multi_json (~> 1.0)
9393
multi_xml (~> 0.5)
9494
rack (~> 1.2)
95+
pg (0.14.1)
9596
polyglot (0.3.3)
9697
rack (1.4.5)
9798
rack-cache (1.2)
@@ -162,6 +163,7 @@ DEPENDENCIES
162163
jquery-rails
163164
less-rails
164165
oauth-plugin (~> 0.4.0)
166+
pg
165167
rails (= 3.2.11)
166168
sass-rails (~> 3.2.3)
167169
sqlite3

0 commit comments

Comments
 (0)