https://github.com/guard/guard
Raw File
Tip revision: 5bc45b663b9e10561015b45a669fa044d941fda4 authored by Michael Kessler on 09 November 2012, 16:41:40 UTC
Release 1.5.4
Tip revision: 5bc45b6
Guardfile
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