class Castle::Utils::GetTimestamp

Generates a timestamp

Public Class Methods

call() click to toggle source

Returns current time as ISO8601 formatted string

# File lib/castle/utils/get_timestamp.rb, line 9
def call
  Time.now.utc.iso8601(3)
end