# File lib/guard/listeners/linux.rb, line 35
    def self.usable?
      require 'rb-inotify'
      if !defined?(INotify::VERSION) || (defined?(Gem::Version) &&
          Gem::Version.new(INotify::VERSION.join('.')) < Gem::Version.new('0.8.5'))
        UI.info 'Please update rb-inotify (>= 0.8.5)'
        false
      else
        true
      end
    rescue LoadError
      UI.info 'Please install rb-inotify gem for Linux inotify support'
      false
    end