Skip to content

Commit 5c64d4a

Browse files
committed
drop support for Ruby < v2.6
1 parent 0ddf0a2 commit 5c64d4a

File tree

2 files changed

+5
-11
lines changed

2 files changed

+5
-11
lines changed

.travis.yml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,22 +3,16 @@ bundler_args: --binstubs --jobs=3 --retry=3
33
cache: bundler
44
sudo: false
55
before_install:
6-
- gem i rubygems-update -v '<3' && update_rubygems
7-
# from travis docs, to use bundler 1.x:
8-
- gem uninstall -v '>= 2' -i $(rvm gemdir)@global -ax bundler || true
9-
- gem install bundler -v '< 2'
6+
- gem update --system
7+
- gem install bundler
108
before_script:
119
- "bin/ci-code-review"
1210
script: bin/ci
1311
rvm:
14-
- 2.5.0
12+
- 2.6
13+
- 2.7
1514
env:
1615
- RAILS_VERSION='~> 5.2.0'
1716
- RAILS_VERSION='5-2-stable'
1817
matrix:
19-
include:
20-
- rvm: 2.2.3
21-
env: RAILS_VERSION='~> 5.2.0'
22-
- rvm: 2.4.4
23-
env: RAILS_VERSION='~> 4.2.10'
2418
fast_finish: true

kracken.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Gem::Specification.new do |s|
1919
s.bindir = "exe"
2020
s.executables = s.files.grep(%r{^exe/}) { |f| File.basename(f) }
2121

22-
s.add_dependency 'rails', [">= 4.0", "< 6.0"]
22+
s.add_dependency 'rails', [">= 5.2", "< 6.0"]
2323
s.add_dependency 'omniauth', '~> 1.0'
2424
s.add_dependency 'faraday', '~> 0.8'
2525
s.add_dependency 'omniauth-oauth2', '~> 1.1'

0 commit comments

Comments
 (0)