require 'guard' require 'guard/guard' require 'fileutils' module Guard class Lacquer < Guard autoload :Varnishd, 'guard/lacquer/varnishd' def initialize(watchers = [], options = {}) super @options = { :port => 3001, :backend => '127.0.0.1:3000', :storage => 'file,tmp/cache/varnish.store,32M', :sbin_path => File.split(`which varnishd`.strip).first, :pid_file => 'tmp/pids/varnish.pid' }.merge(options) @backend = Varnishd.new(@options) if !File.file?(varnish_erb = 'config/varnish.vcl.erb') UI.info "No config/varnish.vcl.erb found, copying default from Lacquer..." FileUtils.mkdir_p File.split(varnish_erb).first FileUtils.cp Gem.find_files('generators/lacquer/templates/varnish.vcl.erb').first, varnish_erb end end def start @backend.stop if @backend.running? @backend.start notify "Varnish started on port #{@options[:port]}, with backend #{@options[:backend]}." end def stop @backend.stop notify "Until next time..." end def reload stop start end def run_all true end # Called on file(s) modifications def run_on_change(paths) restart end # Called on file(s) deletions def run_on_deletion(paths) restart end private def notify(message) Notifier.notify(message, :title => 'guard-lacquer', :image => File.expand_path("../../../images/varnish.png", __FILE__)) end end end