master/lib/guard.rb

93 lines
2.5 KiB
Ruby
Raw Normal View History

2010-10-07 20:37:30 +00:00
require 'bundler'
2010-10-03 21:00:33 +00:00
module Guard
autoload :UI, 'guard/ui'
autoload :Dsl, 'guard/dsl'
autoload :Interactor, 'guard/interactor'
autoload :Listener, 'guard/listener'
autoload :Watcher, 'guard/watcher'
autoload :Notifier, 'guard/notifier'
class << self
attr_accessor :options, :guards, :listener
# initialize this singleton
def init(options = {})
2010-10-03 21:00:33 +00:00
@options = options
@listener = Listener.init
2010-10-03 21:00:33 +00:00
@guards = []
return self
end
def start(options = {})
init options
2010-10-03 21:00:33 +00:00
Dsl.evaluate_guardfile
2010-10-07 20:37:30 +00:00
if guards.empty?
2010-10-08 13:00:45 +00:00
UI.error "No guards found in Guardfile, please add it at least one."
2010-10-07 20:37:30 +00:00
else
Interactor.init_signal_traps
listener.on_change do |files|
run do
guards.each do |guard|
paths = Watcher.match_files(guard, files)
supervised_task(guard, :run_on_change, paths) unless paths.empty?
2010-10-07 20:37:30 +00:00
end
2010-10-03 21:00:33 +00:00
end
end
2010-10-07 20:37:30 +00:00
UI.info "Guard is now watching at '#{Dir.pwd}'"
guards.each { |g| supervised_task(g, :start) }
2010-10-07 20:37:30 +00:00
listener.start
2010-10-03 21:00:33 +00:00
end
end
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
def get_guard_class(name)
2010-10-03 21:00:33 +00:00
require "guard/#{name.downcase}"
2010-10-18 19:45:31 +00:00
klasses = []
ObjectSpace.each_object(Class) do |klass|
klasses << klass if klass.to_s.downcase.match "^guard::#{name.downcase}"
end
klasses.first
2010-10-07 20:37:30 +00:00
rescue LoadError
2010-10-10 10:38:25 +00:00
UI.error "Could not find gem 'guard-#{name}' in the current Gemfile."
2010-10-07 20:37:30 +00:00
end
# Let a guard execute his task but
# fire it if his work lead to system failure
def supervised_task(guard, task_to_supervise, *args)
begin
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
end
2010-10-07 20:37:30 +00:00
def locate_guard(name)
`gem open guard-#{name} --latest --command echo`.chomp
2010-10-10 10:38:25 +00:00
rescue
UI.error "Could not find 'guard-#{name}' gem path."
2010-10-03 21:00:33 +00:00
end
def run
listener.stop
UI.clear if options[:clear]
2010-10-20 20:40:44 +00:00
begin
yield
rescue Interrupt
end
2010-10-03 21:00:33 +00:00
listener.start
end
end
end