Sha256: 213ac0395665b4a284f71f35e5c750cab927a1efc9edb60da66fa20cf573b76c

Contents?: true

Size: 1.15 KB

Versions: 7

Compression:

Stored size: 1.15 KB

Contents

module Guard

  # Listener implementation for Mac OS X `FSEvents`.
  #
  class Darwin < Listener

    # Initialize the Listener.
    #
    def initialize(*)
      super
      @fsevent = FSEvent.new
    end

    # Start the listener.
    #
    def start
      super
      worker.run
    end

    # Stop the listener.
    #
    def stop
      super
      worker.stop
    end

    # Check if the listener is usable on the current OS.
    #
    # @return [Boolean] whether usable or not
    #
    def self.usable?(no_vendor = false)
      return false unless RbConfig::CONFIG['target_os'] =~ /darwin/i

      $LOAD_PATH << File.expand_path('../../../vendor/darwin/lib', __FILE__) unless no_vendor
      require 'rb-fsevent'
      true
    rescue LoadError
      false
    end

    private

    # Get the listener worker.
    #
    def worker
      @fsevent
    end

    # Watch the given directory for file changes.
    #
    # @param [String] directory the directory to watch
    #
    def watch(directory)
      worker.watch(directory) do |modified_dirs|
        files = modified_files(modified_dirs)
        @callback.call(files) unless files.empty?
      end
    end

  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
guard-1.0.0 lib/guard/listeners/darwin.rb
guard-0.10.0 lib/guard/listeners/darwin.rb
guard-0.9.4 lib/guard/listeners/darwin.rb
guard-0.9.3 lib/guard/listeners/darwin.rb
guard-0.9.2 lib/guard/listeners/darwin.rb
guard-0.9.1 lib/guard/listeners/darwin.rb
guard-0.9.0 lib/guard/listeners/darwin.rb