Skip to content

Commit

Permalink
www/redmine4*: Fix build after recent rubygem-csv update.
Browse files Browse the repository at this point in the history
  • Loading branch information
MikaelUrankar committed Jun 15, 2021
1 parent 3f38ac2 commit 2f2df42
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
3 changes: 2 additions & 1 deletion www/redmine4/files/patch-Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
+gem "roadie-rails", (RUBY_VERSION < "2.5" ? "~> 1.3.0" : "~> 2.2.0")
gem "mimemagic"
gem "mail", "~> 2.7.1"
gem 'csv', (RUBY_VERSION < '2.5' ? ['>= 3.1.1', '<= 3.1.5'] : '~> 3.1.1')
-gem 'csv', (RUBY_VERSION < '2.5' ? ['>= 3.1.1', '<= 3.1.5'] : '~> 3.1.1')
+gem 'csv', (RUBY_VERSION < '2.5' ? ['>= 3.1.1', '<= 3.1.5'] : '~> 3.2.0')
gem 'nokogiri', (RUBY_VERSION < '2.5' ? '~> 1.10.0' : '~> 1.11.1')
-gem "i18n", "~> 1.6.0"
+gem "i18n", ">= 1.6.0"
Expand Down
8 changes: 7 additions & 1 deletion www/redmine42/files/patch-Gemfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
--- Gemfile.orig 2021-04-30 11:34:49 UTC
+++ Gemfile
@@ -3,11 +3,11 @@ source 'https://rubygems.org'
@@ -3,16 +3,16 @@ source 'https://rubygems.org'
ruby '>= 2.4.0', '< 2.8.0'
gem 'bundler', '>= 1.12.0'

Expand All @@ -14,6 +14,12 @@
gem "actionpack-xml_parser"
gem 'roadie-rails', (RUBY_VERSION < '2.5' ? '~> 1.3.0' : '~> 2.2.0')
gem 'marcel'
gem "mail", "~> 2.7.1"
-gem 'csv', (RUBY_VERSION < '2.5' ? ['>= 3.1.1', '<= 3.1.5'] : '~> 3.1.1')
+gem 'csv', (RUBY_VERSION < '2.5' ? ['>= 3.1.1', '<= 3.1.5'] : '~> 3.2.0')
gem 'nokogiri', (RUBY_VERSION < '2.5' ? '~> 1.10.0' : '~> 1.11.1')
gem 'i18n', '~> 1.8.2'
gem "rbpdf", "~> 1.20.0"
@@ -37,67 +37,6 @@ group :openid do
gem "rack-openid"
end
Expand Down

0 comments on commit 2f2df42

Please sign in to comment.