https://github.com/guard/guard
Raw File
Tip revision: 7d263a03b286c2cee028f16e2e4850d8c4b1df53 authored by Michael Kessler on 17 October 2012, 15:14:32 UTC
Add terminal title to the README.
Tip revision: 7d263a0
Guardfile
notification :off

group :specs do
  guard :rspec, :cli => '--fail-fast --format doc' do
    watch(%r{^spec/.+_spec\.rb$})
    watch(%r{^lib/(.+)\.rb$})                { |m| "spec/#{m[1]}_spec.rb" }
    watch('spec/spec_helper.rb')             { "spec" }
  end
end

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