File: Guardfile

package info (click to toggle)
ruby-rspec-retry 0.2.0-1~bpo70%2B1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy-backports
  • size: 140 kB
  • sloc: ruby: 126; makefile: 2
file content (5 lines) | stat: -rw-r--r-- 197 bytes parent folder | download | duplicates (6)
1
2
3
4
5
guard 'rspec', :version => 2, :cli => '-c -f d' do
  watch(%r{^spec/.+_spec\.rb$})
  watch(%r{^lib/(.+)\.rb$})     { |m| "spec/lib/#{m[1]}_spec.rb" }
  watch('spec/spec_helper.rb')  { "spec" }
end