Telegram Web, preconfigured for usage in I2P.
http://web.telegram.i2p/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
503 B
20 lines
503 B
11 years ago
|
#!/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
|
||
|
|