Sha256: a3e58dcb7b82b38cbdef6155b15f49f063ed29e899cb2ddef55671ec2af7f2a5

Contents?: true

Size: 462 Bytes

Versions: 8

Compression:

Stored size: 462 Bytes

Contents

#!/usr/bin/env watchr

begin
  require File.join(ENV["HOME"], ".watchr.test.rb")
rescue LoadError
  warn "Unable to load #{File.join(ENV["HOME"], ".watchr.test.rb")}"
  warn "You might try this: http://gist.github.com/raw/273574/8804dff44b104e9b8706826dc8882ed985b4fd13/.watchr.test.rb"
  exit
end

run_tests

watch('test/test_.*\.rb') {|md| run md[0] }
watch('lib/(.*)\.rb') {|md| run "test/test_#{underscore(md[1])}.rb" }
watch('test/helper.rb') { run_tests }

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
libnotify-0.4.0 test.watchr
libnotify-0.3.0 test.watchr
libnotify-0.2.0 test.watchr
libnotify-0.1.4 test.watchr
libnotify-0.1.3 test.watchr
libnotify-0.1.2 test.watchr
libnotify-0.1.1 test.watchr
libnotify-0.1.0 test.watchr