aboutsummaryrefslogtreecommitdiffstats
path: root/alias-angular/scripts/watchr.rb
diff options
context:
space:
mode:
Diffstat (limited to 'alias-angular/scripts/watchr.rb')
-rwxr-xr-xalias-angular/scripts/watchr.rb19
1 files changed, 19 insertions, 0 deletions
diff --git a/alias-angular/scripts/watchr.rb b/alias-angular/scripts/watchr.rb
new file mode 100755
index 0000000..89ef656
--- /dev/null
+++ b/alias-angular/scripts/watchr.rb
@@ -0,0 +1,19 @@
+#!/usr/bin/env watchr
+
+# config file for watchr http://github.com/mynyml/watchr
+# install: gem install watchr
+# run: watch watchr.rb
+# note: make sure that you have jstd server running (server.sh) and a browser captured
+
+log_file = File.expand_path(File.dirname(__FILE__) + '/../logs/jstd.log')
+
+`cd ..`
+`touch #{log_file}`
+
+puts "String watchr... log file: #{log_file}"
+
+watch( '(app/js|test/unit)' ) do
+ `echo "\n\ntest run started @ \`date\`" > #{log_file}`
+ `scripts/test.sh &> #{log_file}`
+end
+