2010-10-07 20:37:30 +00:00
|
|
|
require 'bundler'
|
|
|
|
|
2010-10-03 21:00:33 +00:00
|
|
|
module Guard
|
2011-01-19 22:05:45 +00:00
|
|
|
|
2010-10-03 21:00:33 +00:00
|
|
|
autoload :UI, 'guard/ui'
|
|
|
|
autoload :Dsl, 'guard/dsl'
|
|
|
|
autoload :Interactor, 'guard/interactor'
|
|
|
|
autoload :Listener, 'guard/listener'
|
|
|
|
autoload :Watcher, 'guard/watcher'
|
|
|
|
autoload :Notifier, 'guard/notifier'
|
2011-01-19 22:05:45 +00:00
|
|
|
|
2010-10-03 21:00:33 +00:00
|
|
|
class << self
|
|
|
|
attr_accessor :options, :guards, :listener
|
2011-01-19 22:05:45 +00:00
|
|
|
|
2010-10-27 13:18:00 +00:00
|
|
|
# initialize this singleton
|
2010-11-30 20:15:03 +00:00
|
|
|
def setup(options = {})
|
2010-10-03 21:00:33 +00:00
|
|
|
@options = options
|
2010-11-30 20:15:03 +00:00
|
|
|
@listener = Listener.select_and_init
|
2010-10-03 21:00:33 +00:00
|
|
|
@guards = []
|
2010-11-25 23:58:36 +00:00
|
|
|
self
|
2010-10-27 13:18:00 +00:00
|
|
|
end
|
2011-01-19 22:05:45 +00:00
|
|
|
|
2010-10-27 13:18:00 +00:00
|
|
|
def start(options = {})
|
2010-11-30 20:15:03 +00:00
|
|
|
setup(options)
|
2011-01-19 22:05:45 +00:00
|
|
|
|
2010-11-30 20:15:03 +00:00
|
|
|
Interactor.init_signal_traps
|
2010-12-17 15:31:39 +00:00
|
|
|
Dsl.evaluate_guardfile(options)
|
2011-01-19 22:05:45 +00:00
|
|
|
|
2010-10-07 20:37:30 +00:00
|
|
|
if guards.empty?
|
2010-10-28 06:47:26 +00:00
|
|
|
UI.error "No guards found in Guardfile, please add at least one."
|
2010-10-07 20:37:30 +00:00
|
|
|
else
|
2011-01-19 22:05:45 +00:00
|
|
|
listener.on_change do |files|
|
|
|
|
if Watcher.match_files?(guards, files)
|
|
|
|
run { run_on_change_for_all_guards(files) }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-11-30 20:15:03 +00:00
|
|
|
UI.info "Guard is now watching at '#{Dir.pwd}'"
|
2011-01-19 22:05:45 +00:00
|
|
|
guards.each { |guard| supervised_task(guard, :start) }
|
|
|
|
listener.start
|
2010-11-30 20:15:03 +00:00
|
|
|
end
|
|
|
|
end
|
2011-01-19 22:05:45 +00:00
|
|
|
|
|
|
|
def run_on_change_for_all_guards(files)
|
|
|
|
guards.each do |guard|
|
|
|
|
paths = Watcher.match_files(guard, files)
|
|
|
|
supervised_task(guard, :run_on_change, paths) unless paths.empty?
|
|
|
|
end
|
|
|
|
# Reparse the whole directory to catch new files modified during the guards run
|
|
|
|
new_modified_files = listener.modified_files([Dir.pwd + '/'], :all => true)
|
|
|
|
listener.update_last_event
|
|
|
|
unless new_modified_files.empty?
|
|
|
|
run_on_change_for_all_guards(new_modified_files)
|
2010-11-30 20:15:03 +00:00
|
|
|
end
|
|
|
|
end
|
2011-01-19 22:05:45 +00:00
|
|
|
|
2010-12-16 00:22:42 +00:00
|
|
|
# Let a guard execute its task but
|
|
|
|
# fire it if his work leads to a system failure
|
2010-11-30 20:15:03 +00:00
|
|
|
def supervised_task(guard, task_to_supervise, *args)
|
|
|
|
guard.send(task_to_supervise, *args)
|
|
|
|
rescue Exception
|
|
|
|
UI.error("#{guard.class.name} guard failed to achieve its <#{task_to_supervise.to_s}> command: #{$!}")
|
|
|
|
::Guard.guards.delete guard
|
|
|
|
UI.info("Guard #{guard.class.name} has just been fired")
|
|
|
|
return $!
|
|
|
|
end
|
2011-01-19 22:05:45 +00:00
|
|
|
|
2010-11-30 20:15:03 +00:00
|
|
|
def run
|
2011-01-19 22:05:45 +00:00
|
|
|
listener.stop
|
2010-11-30 20:15:03 +00:00
|
|
|
UI.clear if options[:clear]
|
|
|
|
begin
|
|
|
|
yield
|
|
|
|
rescue Interrupt
|
2010-10-03 21:00:33 +00:00
|
|
|
end
|
2011-01-19 22:05:45 +00:00
|
|
|
listener.start
|
2010-11-30 20:15:03 +00:00
|
|
|
end
|
2011-01-19 22:05:45 +00:00
|
|
|
|
2010-10-03 21:00:33 +00:00
|
|
|
def add_guard(name, watchers = [], options = {})
|
2010-10-07 20:37:30 +00:00
|
|
|
guard_class = get_guard_class(name)
|
|
|
|
@guards << guard_class.new(watchers, options)
|
|
|
|
end
|
2011-01-19 22:05:45 +00:00
|
|
|
|
2010-10-07 20:37:30 +00:00
|
|
|
def get_guard_class(name)
|
2010-10-03 21:00:33 +00:00
|
|
|
require "guard/#{name.downcase}"
|
2011-02-18 18:53:05 +00:00
|
|
|
self.const_get(self.constants.find{|klass_name| klass_name.to_s.downcase == name.downcase })
|
2010-10-07 20:37:30 +00:00
|
|
|
rescue LoadError
|
2010-11-30 20:15:03 +00:00
|
|
|
UI.error "Could not find gem 'guard-#{name}', please add it in your Gemfile."
|
2010-10-27 13:18:00 +00:00
|
|
|
end
|
2011-01-19 22:05:45 +00:00
|
|
|
|
2010-10-07 20:37:30 +00:00
|
|
|
def locate_guard(name)
|
2011-02-22 14:15:09 +00:00
|
|
|
`gem which guard/#{name}`.chomp
|
2010-10-10 10:38:25 +00:00
|
|
|
rescue
|
2010-10-20 20:34:32 +00:00
|
|
|
UI.error "Could not find 'guard-#{name}' gem path."
|
2010-10-03 21:00:33 +00:00
|
|
|
end
|
2011-01-19 22:05:45 +00:00
|
|
|
|
2010-10-03 21:00:33 +00:00
|
|
|
end
|
2011-02-18 18:53:05 +00:00
|
|
|
end
|