Skip to content

Commit 999038d

Browse files
committedOct 12, 2016
Drop support for Ruby 2.0
Support for Ruby 2.0 ended in February 2016 [1]. While we have continued to support it anyway, our Travis tests are now failing due to some gems explicitly requiring Ruby >= 2.1. [1] https://www.ruby-lang.org/en/news/2016/02/24/support-plan-of-ruby-2-0-0-and-2-1/
1 parent c8a22df commit 999038d

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed
 

‎.travis.yml

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ sudo: false
55
cache: bundler
66

77
rvm:
8-
- 2.0
98
- 2.1
109
- 2.2
1110
- 2.3.0

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ writing any Ruby code.
5555

5656
This project aims to support the following Ruby runtimes on both \*nix and Windows:
5757

58-
* MRI 2.x
58+
* MRI 2.1+
5959
* JRuby 9+
6060

6161
## Limitations

‎overcommit.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Gem::Specification.new do |s|
2424
Dir['libexec/**/*'] +
2525
Dir['template-dir/**/*']
2626

27-
s.required_ruby_version = '>= 2'
27+
s.required_ruby_version = '>= 2.1'
2828

2929
s.add_dependency 'childprocess', '~> 0.5.8'
3030
s.add_dependency 'iniparse', '~> 1.4'

0 commit comments

Comments
 (0)
Please sign in to comment.