Require alpha arel

Without this change, bundler will resolve a gemfile which is pointing at
Rails master and not arel master. The error message that someone will
get from doing this will be incredibly unhelpful, as it'll be the result
of ActiveRecord being in a half-loaded that halted at `require
"arel/collectors/composite"`, which was subsequently rescued in
`"rails/all"`
This commit is contained in:
Sean Griffin 2017-07-25 13:19:44 -04:00
parent b6033773c1
commit 089ca520e3
1 changed files with 1 additions and 1 deletions

View File

@ -31,5 +31,5 @@ Gem::Specification.new do |s|
s.add_dependency "activesupport", version
s.add_dependency "activemodel", version
s.add_dependency "arel", "~> 8.0"
s.add_dependency "arel", "9.0.0.alpha"
end