From c47c98306d2004bfb1f0ac774b1713a1ee94beee Mon Sep 17 00:00:00 2001 From: Quentin Madec Date: Tue, 20 Sep 2016 16:01:03 -0400 Subject: [PATCH] [ci] add deps reqs fo Ruby version compatibility rack ~> 1.6 for Ruby < 2.2 compatibility json ~> 1.8 for Ruby 1.9.3 compatibility --- Gemfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Gemfile b/Gemfile index 9f63372e..54542388 100644 --- a/Gemfile +++ b/Gemfile @@ -2,6 +2,7 @@ source 'https://rubygems.org' gemspec gem 'rake', '10.1.0' +gem 'rack', '~> 1.6' group :development do gem "faker", "~> 1.2.0" @@ -14,4 +15,5 @@ end group :test do gem "timecop" + gem 'json', '~> 1.8' end