aboutsummaryrefslogtreecommitdiffstats
path: root/Gemfile
diff options
context:
space:
mode:
authoryuuji.yaginuma <yuuji.yaginuma@gmail.com>2018-08-25 17:15:07 +0900
committeryuuji.yaginuma <yuuji.yaginuma@gmail.com>2018-08-25 17:15:07 +0900
commit58fc1ff8efc68a1866fbb053fcd7dfb777f18d66 (patch)
tree2a47d6dec5f3d04ce8add1a44adeac9b9dd5c06f /Gemfile
parente2d8a2ccfd3b0d2030920346a2ff0cad93fcb188 (diff)
downloadrails-58fc1ff8efc68a1866fbb053fcd7dfb777f18d66.tar.gz
rails-58fc1ff8efc68a1866fbb053fcd7dfb777f18d66.tar.bz2
rails-58fc1ff8efc68a1866fbb053fcd7dfb777f18d66.zip
Avoid `pg` 1.1.0 for now
Because there are tests that fail due to the influence of the `async_exec` deprecate message. https://travis-ci.org/rails/rails/jobs/420345370 Related to #33188.
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Gemfile b/Gemfile
index 86ff624e16..09f89804d9 100644
--- a/Gemfile
+++ b/Gemfile
@@ -123,7 +123,7 @@ platforms :ruby, :mswin, :mswin64, :mingw, :x64_mingw do
gem "sqlite3", "~> 1.3.6"
group :db do
- gem "pg", ">= 0.18.0"
+ gem "pg", ">= 0.18.0", "< 1.1"
gem "mysql2", ">= 0.4.10"
end
end