Sha256: 3f610e3572fd11cd5dc3e76339bba85e7990def5832ea95ad43f3087ef1d6197
Contents?: true
Size: 383 Bytes
Versions: 124
Compression:
Stored size: 383 Bytes
Contents
# frozen_string_literal: true class ReeDatetime::EndOfMinute include Ree::FnDSL fn :end_of_minute do link :now link :change end doc("Returns a new DateTime representing the end of the minute (ex. 13:15:59).") contract(Nilor[DateTime] => DateTime) def call(date_time = nil) date_time = date_time || now change(date_time, sec: 59, usec: 999999) end end
Version data entries
124 entries across 124 versions & 1 rubygems