Quellcode durchsuchen

Drop Ruby 2.2 support (#30356).


git-svn-id: http://svn.redmine.org/redmine/trunk@17887 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/4.1.0
Go MAEDA vor 5 Jahren
Ursprung
Commit
158392ae93
3 geänderte Dateien mit 4 neuen und 5 gelöschten Zeilen
  1. 2
    2
      Gemfile
  2. 1
    2
      app/controllers/imports_controller.rb
  3. 1
    1
      doc/INSTALL

+ 2
- 2
Gemfile Datei anzeigen

@@ -10,8 +10,8 @@ gem "actionpack-xml_parser"
gem "roadie-rails", "~> 1.3.0"
gem "mimemagic"
gem "mail", "~> 2.7.1"
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 "csv", "~> 3.0.1" if RUBY_VERSION < "2.6"
gem "nokogiri", "~> 1.10.0"
gem "i18n", "~> 0.7.0"
gem "rbpdf", "~> 1.19.6"


+ 1
- 2
app/controllers/imports_controller.rb Datei anzeigen

@@ -50,8 +50,7 @@ class ImportsController < ApplicationController
redirect_to import_mapping_path(@import)
end

# TODO: Remove ArgumentError when support for Ruby 2.2 is dropped (#28689)
rescue CSV::MalformedCSVError, ArgumentError, EncodingError => e
rescue CSV::MalformedCSVError, EncodingError => e
if e.is_a?(CSV::MalformedCSVError) && e.message !~ /Invalid byte sequence/
flash.now[:error] = l(:error_invalid_csv_file_or_settings)
else

+ 1
- 1
doc/INSTALL Datei anzeigen

@@ -7,7 +7,7 @@ http://www.redmine.org/

== Requirements

* Ruby >= 2.2.2
* Ruby >= 2.3
* RubyGems
* Bundler >= 1.5.0


Laden…
Abbrechen
Speichern