From 2f5ca36a70c2d5ad6a9a1cd8aaae6cc5061a905a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Greg=20Kar=C3=A9kinian?= Date: Wed, 24 Sep 2014 13:33:50 +0200 Subject: [PATCH] Run specs on Travis on Ruby 2.1.3 as well as 1.9.3 Also use bundler to run the specs --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 21c69ec..e60edf3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,11 +1,12 @@ language: ruby rvm: - 1.9.3 + - 2.1.3 before_install: - sh .travis/install_riakcs.sh before_script: - cp config.yml.example config.yml -script: rake test +script: bundle exec rake test branches: only: - master