https://github.com/guard/guard
Raw File
Tip revision: 243ea157a9e3cc3a71025c3833b2bccb4bc00ca7 authored by Thibaud Guillaume-Gentil on 28 September 2011, 20:18:29 UTC
Version 0.8.0
Tip revision: 243ea15
Guardfile
group :specs do
  guard :rspec, :cli => '--format doc' do
    watch(%r{^spec/.+_spec\.rb$})
    watch(%r{^lib/(.+)\.rb$})                { |m| "spec/#{m[1]}_spec.rb" }
    watch('spec/support/listener_helper.rb') { Dir.glob("spec/guard/listeners/*") }
    watch('spec/spec_helper.rb')             { "spec" }
  end
end

group :docs do
  guard :ronn do
    watch(%r{^man/.+\.ronn?$})
  end
end

# require 'guard/guard'
#
# module ::Guard
#   class Breaking < ::Guard::Guard
#     def run_all
#       raise "Fool !"
#     end
#   end
# end
#
# group "exceptional" do
#   guard :breaking
# end
back to top