Skip to content

Commit 8e75c91

Browse files
yskkinctran
authored andcommitted
Drop support of Ruby < 2.2 (#481)
* Drop support of Ruby < 2.2
1 parent 134b833 commit 8e75c91

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

.travis.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,13 @@
11
sudo: false
22
language: ruby
33
rvm:
4-
- 1.9.3
5-
- 2.0
6-
- 2.1
74
- 2.2.5
85
- 2.3.0
96
- 2.4.0
107
- ruby-head
118
matrix:
129
allow_failures:
1310
- rvm: ruby-head
14-
- rvm: 1.9.3
1511
before_install:
1612
- gem update --system
1713
- gem update bundler

Gemfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
source 'https://rubygems.org'
22

3+
ruby '>= 2.2.0'
4+
35
gem 'activerecord', '>= 4.2.5', require: false
46
gem 'rake', require: false
57

annotate.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Gem::Specification.new do |s|
77
s.name = 'annotate'
88
s.version = Annotate.version
99

10-
s.required_ruby_version = '>= 1.9.3'
10+
s.required_ruby_version = '>= 2.2.0'
1111
s.required_rubygems_version = Gem::Requirement.new('>= 0') if s.respond_to? :required_rubygems_version=
1212
s.authors = ['Alex Chaffee', 'Cuong Tran', 'Marcos Piccinini', 'Turadg Aleahmad', 'Jon Frisby']
1313
s.description = 'Annotates Rails/ActiveRecord Models, routes, fixtures, and others based on the database schema.'

0 commit comments

Comments
 (0)