# File lib/merb-core/bootloader.rb, line 1321 def self.every(seconds, &block) Thread.new do loop do sleep( seconds ) yield end Thread.exit end end