From: Jason Meinzer Date: Mon, 2 Jan 2012 21:31:10 +0000 (-0800) Subject: Only use SystemTimer on MRI 1.8 as it is superfluous elsewhere X-Git-Tag: live~5935 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/3c4dec8ce99eec1a412bbe525a3dd4bc9021366f 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. --- 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'