Sha256: 7a07fd1f15cad499ad95ff56ce3866b10bc7f28d19d4a857f752e6200e84186d

Contents?: true

Size: 1.05 KB

Versions: 1

Compression:

Stored size: 1.05 KB

Contents

require 'listen'

module Fontcustom
  class Watcher
    def self.watch(*args)
      callback = Proc.new do |modified, added, removed|
        puts '    >> Changed: ' + modified.join(' ') unless modified.empty?
        puts '    >> Added: ' + added.join(' ') unless added.empty?
        puts '    >> Removed: ' + removed.join(' ') unless removed.empty?

        changed = modified + added + removed
        Fontcustom.compile(*args) unless changed.empty?
      end

      dir = args.first
      @listener = Listen.to(dir).filter(/\.(eps|svg)$/).change(&callback)

      begin
        puts 'Fontcustom is watching your icons at ' + dir
        puts 'Press Ctrl + C to stop.'
        Fontcustom.compile(*args)
        @listener.start()

      # Catches Ctrl + C
      # Does listen gem have a better way of handling this?
      rescue SignalException
        stop
      end
    end

    def self.stop
      # Newline exists so message is not prepended with ^C on SIGTERM
      puts "\nFontcustom is signing off. Goodnight and good luck."
      @listener.stop
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
fontcustom-0.1.4 lib/fontcustom/watcher.rb