fix 1.9.3 warning

This commit is contained in:
John Bintz 2012-01-16 09:33:13 -05:00
parent 5d3ceb5626
commit 89e18ef84d
1 changed files with 2 additions and 2 deletions

View File

@ -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