Sha256: dee6ac3dd3afb92802c0396999feed6cae8bfe13b9263ba579cc46686ae4e857
Contents?: true
Size: 505 Bytes
Versions: 124
Compression:
Stored size: 505 Bytes
Contents
# frozen_string_literal: true class ReeDate::AllWeek include Ree::FnDSL fn :all_week do link :today link :beginning_of_week link :end_of_week end doc(<<~DOC) Returns a Range representing the whole week of the current date. Week starts on start_day (sunday or monday). DOC contract(Nilor[Date], Or[:sunday, :monday] => RangeOf[Date]) def call(date = nil, start_day) date = date || today beginning_of_week(date, start_day)..end_of_week(date, start_day) end end
Version data entries
124 entries across 124 versions & 1 rubygems