diff options
author | Sean Griffin <sean@seantheprogrammer.com> | 2017-07-25 13:19:44 -0400 |
---|---|---|
committer | Sean Griffin <sean@seantheprogrammer.com> | 2017-07-25 13:19:57 -0400 |
commit | 089ca520e32e8cd9ebe1075f491d7856683e6cde (patch) | |
tree | 6f49a9601d16b0b3e736a46c94b2970652858a78 | |
parent | b6033773c1f02cc91155ef10a223f4bc1c176965 (diff) | |
download | rails-089ca520e32e8cd9ebe1075f491d7856683e6cde.tar.gz rails-089ca520e32e8cd9ebe1075f491d7856683e6cde.tar.bz2 rails-089ca520e32e8cd9ebe1075f491d7856683e6cde.zip |
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"`
-rw-r--r-- | activerecord/activerecord.gemspec | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/activerecord.gemspec b/activerecord/activerecord.gemspec index 7b62c98c6e..7ad06fe840 100644 --- a/activerecord/activerecord.gemspec +++ b/activerecord/activerecord.gemspec @@ -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 |