move data under data

This commit is contained in:
David Dollar
2010-10-15 15:53:27 -07:00
parent 8446528f5a
commit 52edb7fd28
9 changed files with 5 additions and 2 deletions
+2
View File
@@ -0,0 +1,2 @@
ticker ./ticker $PORT
error ./error
+5
View File
@@ -0,0 +1,5 @@
#!/usr/bin/env ruby
puts "will error in 10s"
sleep 5
raise "Dying"
+4
View File
@@ -0,0 +1,4 @@
tick
tick
./never_die:6:in `sleep': Interrupt
from ./never_die:6
+6
View File
@@ -0,0 +1,6 @@
#!/usr/bin/env ruby
while true
puts "tick: #{ARGV.inspect}"
sleep 1
end