Commit 41afd3bf16b6ceff2b0dab24ce2eeae8056a7577
1 parent
679d0d6d
Exists in
master
and in
4 other branches
add pg gem
Showing
2 changed files
with
5 additions
and
2 deletions
Show diff stats
Gemfile
| @@ -11,8 +11,9 @@ end | @@ -11,8 +11,9 @@ end | ||
| 11 | gem "rails", "3.2.8" | 11 | gem "rails", "3.2.8" |
| 12 | 12 | ||
| 13 | # Supported DBs | 13 | # Supported DBs |
| 14 | -gem "sqlite3" | ||
| 15 | -gem "mysql2" | 14 | +gem "sqlite3", :group => :sqlite |
| 15 | +gem "mysql2", :group => :mysql | ||
| 16 | +gem "pg", :group => :postgres | ||
| 16 | 17 | ||
| 17 | # Auth | 18 | # Auth |
| 18 | gem "devise", "~> 2.1.0" | 19 | gem "devise", "~> 2.1.0" |
Gemfile.lock
| @@ -245,6 +245,7 @@ GEM | @@ -245,6 +245,7 @@ GEM | ||
| 245 | multi_json (~> 1.3) | 245 | multi_json (~> 1.3) |
| 246 | omniauth-oauth (~> 1.0) | 246 | omniauth-oauth (~> 1.0) |
| 247 | orm_adapter (0.3.0) | 247 | orm_adapter (0.3.0) |
| 248 | + pg (0.14.0) | ||
| 248 | polyglot (0.3.3) | 249 | polyglot (0.3.3) |
| 249 | posix-spawn (0.3.6) | 250 | posix-spawn (0.3.6) |
| 250 | pry (0.9.9.6) | 251 | pry (0.9.9.6) |
| @@ -441,6 +442,7 @@ DEPENDENCIES | @@ -441,6 +442,7 @@ DEPENDENCIES | ||
| 441 | omniauth-google-oauth2 | 442 | omniauth-google-oauth2 |
| 442 | omniauth-ldap! | 443 | omniauth-ldap! |
| 443 | omniauth-twitter | 444 | omniauth-twitter |
| 445 | + pg | ||
| 444 | pry | 446 | pry |
| 445 | pygments.rb (= 0.3.1) | 447 | pygments.rb (= 0.3.1) |
| 446 | rack-mini-profiler | 448 | rack-mini-profiler |