From 3c4dec8ce99eec1a412bbe525a3dd4bc9021366f Mon Sep 17 00:00:00 2001 From: Jason Meinzer Date: Mon, 2 Jan 2012 13:31:10 -0800 Subject: [PATCH] Only use SystemTimer on MRI 1.8 as it is superfluous elsewhere See http://ph7spot.com/musings/system-timer for why SystemTimer is needed on MRI 1.8 and not anywhere else. --- Gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index 1c8adfd34..08dafa0cc 100644 --- a/Gemfile +++ b/Gemfile @@ -29,7 +29,7 @@ gem 'rmagick', :require => 'RMagick' gem 'sanitize' # Load SystemTimer for implementing request timeouts -gem 'SystemTimer', '>= 1.1.3', :require => 'system_timer' +gem 'SystemTimer', '>= 1.1.3', :require => 'system_timer', :platforms => :ruby_18 # Load httpclient for SOAP support for Quova GeoIP queries gem 'httpclient' -- 2.43.2