summaryrefslogtreecommitdiffstats
path: root/Gemfile
diff options
context:
space:
mode:
authorGo MAEDA <maeda@farend.jp>2020-01-25 02:16:11 +0000
committerGo MAEDA <maeda@farend.jp>2020-01-25 02:16:11 +0000
commit0c71a982e01f146fc7b30da04bf6757b363eb51a (patch)
tree291d103b347f2fb210388492c727f058b7321549 /Gemfile
parent62fe933eed0cd542c978d3e77f5bfbb4d2031950 (diff)
downloadredmine-0c71a982e01f146fc7b30da04bf6757b363eb51a.tar.gz
redmine-0c71a982e01f146fc7b30da04bf6757b363eb51a.zip
Redmine 4.1 installation fails due to an attempt to install sprockets 4.0.0 if bundler prior to 1.15.2 is used on Ruby prior to 2.5 (#32839).
Patch by Go MAEDA. git-svn-id: http://svn.redmine.org/redmine/trunk@19456 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Gemfile b/Gemfile
index 811212e6f..78db5caf8 100644
--- a/Gemfile
+++ b/Gemfile
@@ -4,6 +4,7 @@ ruby '>= 2.3.0', '< 2.7.0'
gem "bundler", ">= 1.5.0"
gem "rails", "5.2.4.1"
+gem 'sprockets', '~> 3.7.2' if RUBY_VERSION < '2.5'
gem 'rouge', '~> 3.15.0'
gem 'request_store', '~> 1.5.0'
gem "mini_mime", "~> 1.0.1"