From cbf6e149683fba3a2d9f4df9541fe6fe7c7dacfc Mon Sep 17 00:00:00 2001 From: Jean Boussier Date: Mon, 10 Dec 2018 13:54:51 +0100 Subject: [PATCH] Review build matric for Redis 5.0 --- .travis.yml | 16 ++++++---------- bin/console | 7 +++++++ 2 files changed, 13 insertions(+), 10 deletions(-) create mode 100755 bin/console diff --git a/.travis.yml b/.travis.yml index bd56737af..65216ac2e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,10 +9,9 @@ before_install: script: make rvm: - - 2.2.2 - - 2.3.3 - - 2.4.1 - - 2.5.0 + - 2.3.8 + - 2.4.5 + - 2.5.3 - jruby-9.1.17.0 gemfile: ".travis/Gemfile" @@ -30,11 +29,10 @@ env: matrix: - DRIVER=ruby REDIS_BRANCH=3.0 - DRIVER=ruby REDIS_BRANCH=3.2 - - DRIVER=hiredis REDIS_BRANCH=3.0 - - DRIVER=hiredis REDIS_BRANCH=3.2 - - DRIVER=synchrony REDIS_BRANCH=3.0 - - DRIVER=synchrony REDIS_BRANCH=3.2 - DRIVER=ruby REDIS_BRANCH=4.0 + - DRIVER=ruby REDIS_BRANCH=5.0 + - DRIVER=hiredis REDIS_BRANCH=5.0 + - DRIVER=synchrony REDIS_BRANCH=5.0 branches: only: @@ -52,8 +50,6 @@ matrix: env: DRIVER=ruby REDIS_BRANCH=3.2 LOW_TIMEOUT=0.3 - rvm: jruby-9.1.17.0 env: DRIVER=ruby REDIS_BRANCH=4.0 LOW_TIMEOUT=0.3 - - rvm: 2.5.3 - env: DRIVER=ruby REDIS_BRANCH=5.0 notifications: irc: diff --git a/bin/console b/bin/console new file mode 100755 index 000000000..8a3cd89ee --- /dev/null +++ b/bin/console @@ -0,0 +1,7 @@ +#!/usr/bin/env ruby + +$LOAD_PATH.unshift(File.expand_path('../../lib', __FILE__)) +require 'redis' + +require 'irb' +IRB.start