From 8f2a58410ca62cb1a5cf3aed9cf87a736eef940f Mon Sep 17 00:00:00 2001 From: Igor Fedoronchuk Date: Sun, 13 Nov 2016 18:40:14 +0200 Subject: [PATCH] fix tins dependency for ruby ver < 2.0 --- Gemfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index 5c2e268..d6750c6 100644 --- a/Gemfile +++ b/Gemfile @@ -1,5 +1,7 @@ source "http://rubygems.org" group :test do - gem 'coveralls', require: false # Test coverage website. Go to https://coveralls.io + gem 'coveralls', '0.8.5', require: false # Test coverage website. Go to https://coveralls.io + gem 'tins', '< 1.3.4', platforms: [:ruby_19, :jruby] end + gemspec