From 1bf49a7954a6b316d4c3604596ff84d8479d25a7 Mon Sep 17 00:00:00 2001 From: Go MAEDA Date: Sun, 10 Feb 2019 15:38:46 +0000 Subject: [PATCH] Use xpath < 3.2 for Ruby < 2.3 (#30114). Patch by Go MAEDA. git-svn-id: http://svn.redmine.org/redmine/branches/4.0-stable@17854 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- Gemfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Gemfile b/Gemfile index 8fcf249a3..89e5f6230 100644 --- a/Gemfile +++ b/Gemfile @@ -14,6 +14,7 @@ gem "csv", "~> 3.0.1" if RUBY_VERSION >= "2.3" && RUBY_VERSION < "2.6" gem "nokogiri", (RUBY_VERSION >= "2.3" ? "~> 1.10.0" : "~> 1.9.1") gem "i18n", "~> 0.7.0" +gem "xpath", "< 3.2.0" if RUBY_VERSION < "2.3" # Windows does not include zoneinfo files, so bundle the tzinfo-data gem gem 'tzinfo-data', platforms: [:mingw, :x64_mingw, :mswin] -- 2.39.5