# File lib/fssm/support.rb, line 5
    def usable_backend
      case
        when mac? && rb_fsevent?
          'RBFSEvent'
        when linux? && rb_inotify?
          'Inotify'
        else
          'Polling'
      end
    end