Sha256: 143471cafebc766777d07c4c6a846af807c3adeba3d4725fd2418c2b4e707eb6
Contents?: true
Size: 486 Bytes
Versions: 124
Compression:
Stored size: 486 Bytes
Contents
# frozen_string_literal: true class ReeDate::BeginningOfYear include Ree::FnDSL fn :beginning_of_year do link :today link :change link :beginning_of_month end doc(<<~DOC) Returns a new date/time at the beginning of the year. today = Date.today # => Fri, 10 Jul 2015 today.beginning_of_year # => Thu, 01 Jan 2015 DOC contract(Nilor[Date] => Date) def call(date = nil) date = date || today change(date, day: 1, month: 1) end end
Version data entries
124 entries across 124 versions & 1 rubygems