Skip to content

Commit df4ba96

Browse files
Drop support for ruby 2.4
Since it reached its End of Life too.
1 parent 556ef28 commit df4ba96

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

Diff for: .travis.yml

-4
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,13 @@
11
language: ruby
22
cache: bundler
33
rvm:
4-
- 2.4.6
54
- 2.5.5
65
- 2.6.3
76
- ruby-head
87
env:
98
- RAILS_VERSION="~> 5.2.0"
109
- RAILS_VERSION="~> 6.0.0.rc1"
1110
matrix:
12-
exclude:
13-
- rvm: 2.4.6
14-
env: RAILS_VERSION="~> 6.0.0.rc1"
1511
allow_failures:
1612
- rvm: ruby-head
1713
fast_finish: true

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ boot it every time you run a test, rake task or migration.
1616

1717
## Compatibility
1818

19-
* Ruby versions: MRI 2.4, MRI 2.5, MRI 2.6
19+
* Ruby versions: MRI 2.5, MRI 2.6
2020
* Rails versions: 5.2, 6.0 (Spring is installed by default when you do
2121
`rails new` to generate your application)
2222

Diff for: spring.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Gem::Specification.new do |gem|
1313
gem.files = Dir["LICENSE.txt", "README.md", "lib/**/*", "bin/*"]
1414
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
1515

16-
gem.required_ruby_version = ">= 2.4.0"
16+
gem.required_ruby_version = ">= 2.5.0"
1717

1818
gem.add_development_dependency 'rake'
1919
gem.add_development_dependency 'bump'

0 commit comments

Comments
 (0)