File: Guardfile

package info (click to toggle)
ruby-rspec-retry 0.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 136 kB
  • ctags: 18
  • sloc: ruby: 133; 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