Skip to content

Instantly share code, notes, and snippets.

@dkubb
Created October 8, 2008 21:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dkubb/15595 to your computer and use it in GitHub Desktop.
Save dkubb/15595 to your computer and use it in GitHub Desktop.
def xmlschema_datetime(dt)
string = sprintf '%4d-%02d-%02dT%02d:%02d:%02d', dt.year, dt.mon, dt.day, dt.hour, dt.min, dt.sec
string << sprintf('.%06d', dt.sec_fraction * 86400 * 10**6) if dt.sec_fraction.nonzero?
string << dt.zone
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment