Sha256: 41794dd675396e75ea0f6147b7c1e1be95d477952d8e8a4a61dc7d740fc1b9e9
Contents?: true
Size: 356 Bytes
Versions: 9
Compression:
Stored size: 356 Bytes
Contents
# encoding: utf-8 module Nanoc::Extra::TimeExtensions # @return [String] The time in an ISO-8601 date format. def to_iso8601_date strftime('%Y-%m-%d') end # @return [String] The time in an ISO-8601 time format. def to_iso8601_time getutc.strftime('%Y-%m-%dT%H:%M:%SZ') end end class Time include Nanoc::Extra::TimeExtensions end
Version data entries
9 entries across 9 versions & 1 rubygems