Description: replace a call to the dependency manager by a basic 'require'
 The dependency should already be installed. No need for further checks
Author: Srihari K <srih4ri@gmail.com>
Last-Update: 2012-11-04

--- a/lib/listen/adapters/linux.rb
+++ b/lib/listen/adapters/linux.rb
@@ -7,7 +7,8 @@ module Listen
       extend DependencyManager
 
       # Declare the adapter's dependencies
-      dependency 'rb-inotify', '~> 0.8.8'
+      #dependency 'rb-inotify', '~> 0.8.8'
+      require 'rb-inotify' 
 
       # Watched inotify events
       #
