Class: Time

Inherits:
Object show all
Defined in:
lib/zaml.rb

Instance Method Summary (collapse)

Instance Method Details

- (Object) to_zaml(z)



287
288
289
290
291
292
# File 'lib/zaml.rb', line 287

def to_zaml(z)
# 2008-12-06 10:06:51.373758 -07:00
ms = ("%0.6f" % (usec * 1e-6)).sub(/^\d+\./,'')
offset = "%+0.2i:%0.2i" % [utc_offset / 3600, (utc_offset / 60) % 60]
z.emit(self.strftime("%Y-%m-%d %H:%M:%S.#{ms} #{offset}"))
end