Project

General

Profile

Feature #31128 » 0001-Drop-Ruby-2.5-Support.patch

Go MAEDA, 2021-03-29 05:49

View differences:

Gemfile
1 1
source 'https://rubygems.org'
2 2

  
3
ruby '>= 2.4.0', '< 2.8.0'
3
ruby '>= 2.5.0', '< 2.8.0'
4 4
gem 'bundler', '>= 1.12.0'
5 5

  
6 6
gem 'rails', '5.2.5'
7
gem 'sprockets', '~> 3.7.2' if RUBY_VERSION < '2.5'
8 7
gem 'rouge', '~> 3.26.0'
9 8
gem 'request_store', '~> 1.5.0'
10 9
gem "mini_mime", "~> 1.0.1"
11 10
gem "actionpack-xml_parser"
12
gem 'roadie-rails', (RUBY_VERSION < '2.5' ? '~> 1.3.0' : '~> 2.2.0')
11
gem 'roadie-rails', '~> 2.2.0'
13 12
gem 'marcel'
14 13
gem "mail", "~> 2.7.1"
15
gem 'csv', (RUBY_VERSION < '2.5' ? ['>= 3.1.1', '<= 3.1.5'] : '~> 3.1.1')
16
gem 'nokogiri', (RUBY_VERSION < '2.5' ? '~> 1.10.0' : '~> 1.11.1')
14
gem 'csv', ~> 3.1.1'
15
gem 'nokogiri', '~> 1.11.1'
17 16
gem 'i18n', '~> 1.8.2'
18 17
gem "rbpdf", "~> 1.20.0"
19 18
gem 'addressable'
doc/INSTALL
7 7

  
8 8
== Requirements
9 9

  
10
* Ruby 2.4, 2.5, 2.6, 2.7 (excluding 2.7.0 and 2.7.1)
10
* Ruby 2.5, 2.6, 2.7 (excluding 2.7.0 and 2.7.1)
11 11
* Bundler >= 1.12.0
12 12

  
13 13
* A database:
(1-1/2)