From d54db9312eada6d1aa15a9ff0c4fb35a886797f3 Mon Sep 17 00:00:00 2001 From: Scott Serok Date: Mon, 19 Aug 2019 12:39:13 -0400 Subject: [PATCH 1/2] Adds Ruby 2.5.5 and 2.6.3 to Travis CI configuration Adds test coverage for newer versions of Ruby. Updates Ruby 2.3, 2.4, and 2.5 patch version to the latest available. --- .travis.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 5c9216e..bd44e09 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,8 @@ language: ruby rvm: - - 2.3.4 - - 2.4.1 + - 2.3.7 + - 2.4.6 + - 2.5.5 + - 2.6.3 - ruby-head before_install: gem update bundler From 353b1aed1c699eaaeaa502e89eb4252eea992adc Mon Sep 17 00:00:00 2001 From: Scott Serok Date: Mon, 19 Aug 2019 19:36:47 -0400 Subject: [PATCH 2/2] Remove patch version from Travis CI configuration When you omit the patch version from the rvm configuration, Travis CI will use the latest patch version available for that minor version of Ruby. i.e. specify version 2.6 will download 2.6.3 as of this commit. --- .travis.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index bd44e09..d95176f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,8 +1,7 @@ language: ruby rvm: - - 2.3.7 - - 2.4.6 - - 2.5.5 - - 2.6.3 + - 2.4 + - 2.5 + - 2.6 - ruby-head before_install: gem update bundler