class Time

Flox-extensions to the standard Time class.

Public Instance Methods

to_xs_datetime() click to toggle source

@return [String] an XS-DateTime representation of the string, like this:

`2014-02-20T20:15:00.123Z`
# File lib/flox/utils.rb, line 12
def to_xs_datetime
  strftime("%Y-%m-%dT%H:%M:%S.%LZ")
end