Skip to content

Commit eab501e

Browse files
Drop support for ruby 1.9.2
ruby 1.9.2 has been out of support for 2,5 years (https://www.ruby-lang.org/en/news/2014/07/01/eol-for-1-8-7-and-1-9-2/) The motivation behind this removal is the fact that all dependencies of this gem (at least rake and rdoc) do not support ruby 1.9.2 in their latest versions. Keeping support would require to constraint their version to very old version (on ruby 1.9.2 only). Actually even 1.9.3 has been out of support for 1,5 years but it does not cause test problem yet. Change-Id: Iad7c3da74a19ebc37c3df4203f7e55a0b5aa70dc
1 parent 5856b70 commit eab501e

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
language: ruby
22
rvm:
3-
- 1.9.2
43
- 1.9.3
54
- 2.0.0
65
- 2.1.1

git.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Gem::Specification.new do |s|
99
s.version = '1.3.0'
1010

1111
s.require_paths = ['lib']
12-
s.required_ruby_version = '>= 1.9'
12+
s.required_ruby_version = '>= 1.9.3'
1313
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
1414
s.requirements = ['git 1.6.0.0, or greater']
1515

0 commit comments

Comments
 (0)