# File lib/vendor/fssm/fssm/support.rb, line 39
    def rb_inotify?
      found = begin
        require 'rb-inotify'
        INotify::Notifier.ancestors.include?(IO)
      rescue LoadError
        false
      end
      STDERR.puts("Warning: Unable to load rb-inotify >= 0.3.0. Inotify will be unavailable.") unless found
      found
    end