class Bootsnooze

Public Class Methods

run() click to toggle source
# File lib/bootsnooze.rb, line 2
def self.run
    t = Time.now.to_f
    while Time.now.to_f < t + 10.0
      # busy loop
    end
end