summaryrefslogtreecommitdiffstats
path: root/Gemfile
diff options
context:
space:
mode:
authorGo MAEDA <maeda@farend.jp>2020-07-28 13:10:49 +0000
committerGo MAEDA <maeda@farend.jp>2020-07-28 13:10:49 +0000
commit39d395b72737c9b22af4e2306283f9cc588afa50 (patch)
tree1fe2b3fe06807d69c72723afa5099d10a303e4cf /Gemfile
parente93febfda23b5fdc17d0bc1ad540b3ae926488c1 (diff)
downloadredmine-39d395b72737c9b22af4e2306283f9cc588afa50.tar.gz
redmine-39d395b72737c9b22af4e2306283f9cc588afa50.zip
Bundler may fail to install stringio if Ruby prior to 2.5 is used (#33768).
Patch by Go MAEDA. git-svn-id: http://svn.redmine.org/redmine/trunk@19938 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Gemfile b/Gemfile
index d11f085d0..b31d10581 100644
--- a/Gemfile
+++ b/Gemfile
@@ -12,7 +12,7 @@ gem "actionpack-xml_parser"
gem "roadie-rails", (RUBY_VERSION < "2.5" ? "~> 1.3.0" : "~> 2.1.0")
gem "mimemagic"
gem "mail", "~> 2.7.1"
-gem "csv", "~> 3.1.1"
+gem 'csv', (RUBY_VERSION < '2.5' ? ['>= 3.1.1', '<= 3.1.5'] : '~> 3.1.1')
gem "nokogiri", "~> 1.10.0"
gem 'i18n', '~> 1.8.2'
gem "rbpdf", "~> 1.20.0"