Skip to content
This repository was archived by the owner on Dec 28, 2023. It is now read-only.

Commit df7be70

Browse files
committed
Bump Ruby + Rails versions
1 parent 06aa9ac commit df7be70

File tree

3 files changed

+12
-7
lines changed

3 files changed

+12
-7
lines changed

.github/workflows/ruby.yml

+9-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,15 @@ jobs:
66
build:
77
strategy:
88
matrix:
9-
ruby_version: [2.6.x, 2.5.x, 2.4.x, 2.3.x, jruby]
10-
gemfile: [Gemfile, gemfiles/Gemfile.rails-5.0.x, gemfiles/Gemfile.rails-5.1.x, gemfiles/Gemfile.rails-5.2.x, gemfiles/Gemfile.rails-master]
9+
ruby_version: [2.7.x, 2.6.x, 2.5.x, 2.4.x, 2.3.x, jruby]
10+
gemfile: [
11+
Gemfile,
12+
gemfiles/Gemfile.rails-5.0.x,
13+
gemfiles/Gemfile.rails-5.1.x,
14+
gemfiles/Gemfile.rails-5.2.x,
15+
gemfiles/Gemfile.rails-6.0.x,
16+
gemfiles/Gemfile.rails-master
17+
]
1118
exclude:
1219
# Ruby 2.4.x is not supported by Rails master
1320
- ruby_version: 2.4.x

.travis.yml

+2-4
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,23 @@ before_install:
22
- gem install bundler
33

44
rvm:
5-
- 2.3.7
65
- 2.4.5
76
- 2.5.3
87
- 2.6.0
8+
- 2.7.0
99
- ruby-head
1010
- rbx
1111
- jruby
1212

1313
gemfile:
1414
- Gemfile
15-
- gemfiles/Gemfile.rails-5.0.x
1615
- gemfiles/Gemfile.rails-5.1.x
1716
- gemfiles/Gemfile.rails-5.2.x
17+
- gemfiles/Gemfile.rails-6.0.x
1818
- gemfiles/Gemfile.rails-master
1919

2020
matrix:
2121
exclude:
22-
- rvm: 2.3.7
23-
gemfile: gemfiles/Gemfile.rails-master
2422
- rvm: 2.4.5
2523
gemfile: gemfiles/Gemfile.rails-master
2624
- rvm: jruby

i18n.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Gem::Specification.new do |s|
2424
s.platform = Gem::Platform::RUBY
2525
s.require_path = 'lib'
2626
s.required_rubygems_version = '>= 1.3.5'
27-
s.required_ruby_version = '>= 2.3.0'
27+
s.required_ruby_version = '>= 2.5.0'
2828

2929
s.add_dependency 'concurrent-ruby', '~> 1.0'
3030

0 commit comments

Comments
 (0)