Skip to content

Commit

Permalink
Fix postgresql builds
Browse files Browse the repository at this point in the history
`pg` 1.0 is not compatible with current Rails version
  • Loading branch information
tvdeyen committed Jan 13, 2018
1 parent 62ea805 commit 9bd369a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ end
group :test do
gem 'sqlite3' if ENV['DB'].nil? || ENV['DB'] == 'sqlite'
gem 'mysql2' if ENV['DB'] == 'mysql'
gem 'pg' if ENV['DB'] == 'postgresql'
gem 'pg', '~> 0.21', if ENV['DB'] == 'postgresql'
gem 'simplecov', require: false
if ENV['TRAVIS']
gem "codeclimate-test-reporter", '~> 1.0', require: false
Expand Down

0 comments on commit 9bd369a

Please sign in to comment.