From 3a9a3aecf66dfbb2d4ebab53b18828889086b469 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Mon, 11 Jul 2016 20:48:10 -0700 Subject: [PATCH] Lock to Rack 1.x and ActiveSupport 4.x This library isn't (necessarily) incompatible with Rails 5, however we test on older Rubies, and it's broken on those. This appears to be due to a Bundler bug: https://github.com/bundler/bundler/pull/4650 --- Gemfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Gemfile b/Gemfile index dbc2966..0c6ebcb 100644 --- a/Gemfile +++ b/Gemfile @@ -5,6 +5,10 @@ group :development do end group :development, :test do + # Workaround for: https://github.com/bundler/bundler/pull/4650 + gem "rack", "~> 1.x" + gem "activesupport", "~> 4" + gem "rake" gem "rspec" gem "rubocop", "0.38.0"