master/lib/guard/guard.rb

114 lines
3.5 KiB
Ruby
Raw Normal View History

2010-10-03 21:00:33 +00:00
module Guard
# Main class that every Guard implementation must subclass.
#
# Guard will trigger the `start`, `stop`, `reload`, `run_all`, `run_on_change` and
# `run_on_deletion` methods depending on user interaction and file modification.
#
# In each of these Guard methods you have to implement some work when you want to
# support this kind of task. The return value of each Guard method is ignored, but
2011-09-30 10:13:50 +00:00
# you can throw `:task_has_failed` to indicate that your Guard method was
# not successful. When `:task_has_failed` is thrown, successive guard tasks
# can be aborted when the group has set the `:halt_on_fail` option.
#
# @see Guard::Group
#
2011-09-30 10:13:50 +00:00
# @example Throw :task_has_failed
#
# def run_all
# if !runner.run(['all'])
2011-09-30 10:13:50 +00:00
# throw :task_has_failed
# end
# end
#
# Each Guard should provide a template Guardfile located within the Gem
# at `lib/guard/guard-name/templates/Guardfile`.
#
# If one of those methods raise an exception other than `:task_has_failed`,
# the Guard::GuardName instance will be removed from the active guards.
#
2010-10-03 21:00:33 +00:00
class Guard
include Hook
attr_accessor :watchers, :options, :group
# Initialize a Guard.
#
# @param [Array<Guard::Watcher>] watchers the Guard file watchers
2011-09-23 09:01:52 +00:00
# @param [Hash] options the custom Guard options
#
def initialize(watchers = [], options = {})
@group = options[:group] ? options.delete(:group).to_sym : :default
2010-10-03 21:00:33 +00:00
@watchers, @options = watchers, options
end
# Initialize the Guard. This will copy the Guardfile template inside the Guard gem.
# The template Guardfile must be located within the Gem at `lib/guard/guard-name/templates/Guardfile`.
#
# @param [String] name the name of the Guard
#
2010-10-07 20:37:30 +00:00
def self.init(name)
if ::Guard::Dsl.guardfile_include?(name)
::Guard::UI.info "Guardfile already includes #{ name } guard"
2010-10-07 20:37:30 +00:00
else
content = File.read('Guardfile')
guard = File.read("#{ ::Guard.locate_guard(name) }/lib/guard/#{ name }/templates/Guardfile")
2010-10-07 20:37:30 +00:00
File.open('Guardfile', 'wb') do |f|
f.puts(content)
f.puts("")
f.puts(guard)
2010-10-07 20:37:30 +00:00
end
::Guard::UI.info "#{name} guard added to Guardfile, feel free to edit it"
end
end
# Call once when Guard starts. Please override initialize method to init stuff.
#
# @raise [:task_has_failed] when start has failed
#
2010-10-03 21:00:33 +00:00
def start
end
# Called when `stop|quit|exit|s|q|e + enter` is pressed (when Guard quits).
#
# @raise [:task_has_failed] when stop has failed
#
2010-10-03 21:00:33 +00:00
def stop
end
# Called when `reload|r|z + enter` is pressed.
# This method should be mainly used for "reload" (really!) actions like reloading passenger/spork/bundler/...
#
# @raise [:task_has_failed] when reload has failed
#
2010-10-03 21:00:33 +00:00
def reload
end
# Called when just `enter` is pressed
# This method should be principally used for long action like running all specs/tests/...
#
# @raise [:task_has_failed] when run_all has failed
#
2010-10-03 21:00:33 +00:00
def run_all
end
# Called on file(s) modifications that the Guard watches.
#
# @param [Array<String>] paths the changes files or paths
# @raise [:task_has_failed] when run_on_change has failed
#
2010-10-03 21:00:33 +00:00
def run_on_change(paths)
end
# Called on file(s) deletions that the Guard watches.
#
# @param [Array<String>] paths the deleted files or paths
# @raise [:task_has_failed] when run_on_change has failed
#
def run_on_deletion(paths)
end
2010-10-03 21:00:33 +00:00
end
2011-08-19 20:53:48 +00:00
end