From 38ba3cfd0ba80aac59ec4e529221d5e657b30a3c Mon Sep 17 00:00:00 2001 From: Steve Klabnik Date: Sat, 5 Jul 2014 12:37:59 -0400 Subject: [PATCH] Add extra declaration on arel because Rails is silly. https://github.com/rails/rails/issues/16063#issuecomment-48090125 --- Gemfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Gemfile b/Gemfile index 3605e28a..95d4dceb 100644 --- a/Gemfile +++ b/Gemfile @@ -9,6 +9,9 @@ version = ENV["RAILS_VERSION"] || "4.1" if version == "master" gem "rails", github: "rails/rails" + + # ugh https://github.com/rails/rails/issues/16063#issuecomment-48090125 + gem "arel", github: "arel/arel" else gem "rails", "~> #{version}.0" end