From 89e18ef84d01eb9a4ad26defd9758152a560a022 Mon Sep 17 00:00:00 2001 From: John Bintz Date: Mon, 16 Jan 2012 09:33:13 -0500 Subject: [PATCH] fix 1.9.3 warning --- Gemfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Gemfile b/Gemfile index ff56dab..9c2b8e5 100644 --- a/Gemfile +++ b/Gemfile @@ -8,11 +8,11 @@ gem 'guard' gem 'guard-rspec' require 'rbconfig' -if Config::CONFIG['target_os'] =~ /darwin/i +if RbConfig::CONFIG['target_os'] =~ /darwin/i gem 'rb-fsevent', '>= 0.3.9' gem 'growl', '~> 1.0.3' end -if Config::CONFIG['target_os'] =~ /linux/i +if RbConfig::CONFIG['target_os'] =~ /linux/i gem 'rb-inotify', '>= 0.5.1' gem 'libnotify', '~> 0.1.3' end