From 8b20d6b0e5d5262f79bf1c4d40e5e30e18541822 Mon Sep 17 00:00:00 2001 From: Brian John Date: Wed, 26 Jun 2019 15:06:37 -0500 Subject: [PATCH] Update to modern ruby Ruby 2.3.* is EOL and Ruby 2.4.* is in "security maintenance": https://www.ruby-lang.org/en/downloads/branches/ --- .ruby-version | 2 +- .travis.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.ruby-version b/.ruby-version index bb576dbd..ec1cf33c 100644 --- a/.ruby-version +++ b/.ruby-version @@ -1 +1 @@ -2.3 +2.6.3 diff --git a/.travis.yml b/.travis.yml index e90c6666..fb81e7d2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,8 +1,8 @@ language: ruby sudo: false rvm: - - 2.3.3 - - 2.5.0 + - 2.5.5 + - 2.6.3 script: - cd spec/dummy && RAILS_ENV=test bundle exec rake db:create db:migrate - cd ../.. && bundle exec rspec spec