Class: Date

Inherits:
Object
  • Object
show all
Defined in:
lib/pratt/core_ext/time.rb

Direct Known Subclasses

DateTime

Instance Method Summary collapse

Instance Method Details

#beginning_of_weekDate

Return “zero hour” of the first day of the, possibly shifted, week.

Returns:



6
7
8
# File 'lib/pratt/core_ext/time.rb', line 6

def beginning_of_week
  (self - wday_offset).beginning_of_day
end

#end_of_weekDate

Return “last second” of the last day of the, possibly shifted, week.

Returns:



14
15
16
# File 'lib/pratt/core_ext/time.rb', line 14

def end_of_week
  (beginning_of_week+6).end_of_day
end