Skip to content

Instantly share code, notes, and snippets.

@Poincare
Created June 26, 2012 19:26
Show Gist options
  • Select an option

  • Save Poincare/2998229 to your computer and use it in GitHub Desktop.

Select an option

Save Poincare/2998229 to your computer and use it in GitHub Desktop.
require 'eventmachine'
EM.run do
EM.add_periodic_timer(1) do
puts "time elapsed"
end
EM.defer do
logs = IO.readlines('/var/log/kernel.log')
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment