File: Guardfile

package info (click to toggle)
ruby-ruby-magic-static 0.6.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 732 kB
  • sloc: ansic: 1,879; ruby: 1,338; makefile: 6
file content (14 lines) | stat: -rw-r--r-- 262 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
guard 'bundler' do
  watch('Gemfile')
end

guard 'rake', task: 'compile' do
  watch(%r{^ext/(.+)\.(c|h)})
  watch(%r{^lib/(.+)\.rb})
end

guard 'rake', task: 'test' do
  watch(%r{^ext/(.+)\.(c|h)})
  watch(%r{^lib/(.+)\.rb})
  watch(%r{^test/test_(.+)\.rb})
end