Skip to content

Instantly share code, notes, and snippets.

/.rb

Created October 7, 2015 03:21
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 anonymous/116e03043eec4c731d29 to your computer and use it in GitHub Desktop.
Save anonymous/116e03043eec4c731d29 to your computer and use it in GitHub Desktop.
def convert_timestamp_to_assume_utc_default(ts)
return nil if ts.size > 19 || ts =~ /Z/i
Time.iso8601(ts).iso8601.slice(0,19) + "Z"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment