Sha256: 01130b8b08ca17632ee34980170f49a879ff4717fffd91dac152da110a7388bb
Contents?: true
Size: 382 Bytes
Versions: 124
Compression:
Stored size: 382 Bytes
Contents
# frozen_string_literal: true class ReeDatetime::BeginningOfMinute include Ree::FnDSL fn :beginning_of_minute do link :now link :change end doc("Returns a new DateTime representing the start of the minute (ex. 13:15:00).") contract(Nilor[DateTime] => DateTime) def call(date_time = nil) date_time = date_time || now change(date_time, sec: 0) end end
Version data entries
124 entries across 124 versions & 1 rubygems