class Rufus::Scheduler
def self.utc_to_s(t=Time.now)
like "2009/11/23 11:11:50.947109 UTC"
Produces the UTC string representation of a Time instance
def self.utc_to_s(t=Time.now) "#{t.utc.strftime('%Y-%m-%d %H:%M:%S')}.#{sprintf('%06d', t.usec)} UTC" end