Skip to content

Instantly share code, notes, and snippets.

@richo
Created June 29, 2012 04:25
Show Gist options
  • Select an option

  • Save richo/3015747 to your computer and use it in GitHub Desktop.

Select an option

Save richo/3015747 to your computer and use it in GitHub Desktop.
class Thing < Thread
def self.start!
new do
mainloop
end
end
def mainloop
loop do
puts "working"
sleep 1
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment