https://github.com/guard/guard
Raw File
Tip revision: b19576d1e20b7ce956299cb9f799e24cde80d904 authored by Thibaud Guillaume-Gentil on 14 May 2012, 19:28:31 UTC
Version 1.0.3
Tip revision: b19576d
Guardfile
group :specs do
  guard :rspec, :all_on_start => false, :all_after_pass => false, :cli => '--fail-fast --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