From 9bd0b08d47a4a5a8848ab607fa0457b2de822c48 Mon Sep 17 00:00:00 2001 From: Evgeni Golov Date: Sat, 19 Dec 2020 19:57:08 +0100 Subject: [PATCH] Refs #31533 - pin rake to < 13.0.2 to avoid test failures Tests currently fail to run with Rake 13.0.2 with uninitialized constant ApplicationRecord::ApipieDSL (NameError) Pin Rake until we know how to properly fix that. --- Gemfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Gemfile b/Gemfile index 0b5d21826ab..ae626bc5502 100644 --- a/Gemfile +++ b/Gemfile @@ -12,6 +12,7 @@ else raise "Unsupported Ruby on Rails version configured in settings.yaml: #{SETTINGS[:rails]}" end +gem 'rake', '< 13.0.2' gem 'rest-client', '>= 2.0.0', '< 3', :require => 'rest_client' gem 'audited', '>= 4.9.0', '< 5' gem 'will_paginate', '>= 3.1.7', '< 4'