From 26b827d8ea8112f74f64518b5f860bb0d0917d40 Mon Sep 17 00:00:00 2001 From: Olle Jonsson Date: Sat, 20 Feb 2016 22:57:16 +0100 Subject: [PATCH 1/2] RSpec: fix a deprecation --- spec/cacheable_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/cacheable_spec.rb b/spec/cacheable_spec.rb index 71ae4f8..31077d7 100644 --- a/spec/cacheable_spec.rb +++ b/spec/cacheable_spec.rb @@ -41,7 +41,7 @@ def self.all context "after a cache clear" do before { model_class.start_feature_cache } - specify { model_class.use_feature_cache.should be_true } + specify { model_class.use_feature_cache.should eq true } specify { model_class.feature_cache.size == 3} end end From 5f551be6842f1b46c51e47f9a6d2aca52a7c5248 Mon Sep 17 00:00:00 2001 From: Paul Annesley Date: Mon, 22 Feb 2016 12:49:48 -0800 Subject: [PATCH 2/2] .travis.yml: add Ruby 2.2, 2.3; drop 1.9, 2.0, 2.1. --- .travis.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 3c9b537..edfe815 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,5 @@ language: ruby rvm: - - 2.1.0 - - 2.0.0 - - 1.9.3 + - 2.3.0 + - 2.2.4 - jruby-19mode