From be21e7849ad2773141d1b16c5a5006b9fba2485d Mon Sep 17 00:00:00 2001 From: Leon Miller-Out Date: Thu, 31 Mar 2016 09:51:01 -0400 Subject: [PATCH] Restrict rake to less than v11, which drops support for older rubies. --- Gemfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index da3a3ec1..9fe4443e 100644 --- a/Gemfile +++ b/Gemfile @@ -2,7 +2,8 @@ source 'https://rubygems.org' gem 'ffi-ncurses', '~> 0.3', :platforms => :jruby gem 'jruby-openssl', '~> 0.8.8', :platforms => :jruby -gem 'rake' +# Newer versions drop support for Ruby < 1.9.3, but we still support them. +gem 'rake', '< 11.0.0' group :test do gem 'coveralls', :require => false