Class: Date
- Inherits:
-
Object
- Object
- Date
- Defined in:
- lib/prekin/extend_date_class.rb
Instance Method Summary collapse
Instance Method Details
#prekin? ⇒ Boolean
4 5 6 7 8 9 |
# File 'lib/prekin/extend_date_class.rb', line 4 def prekin? next_week = self + 7 next_month = self.next_month friday? && (next_week.month == next_month.month) end |