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