# File lib/holidays.rb, line 272 def self.to_monday_if_weekend(date) date += 1 if date.wday == 0 date += 2 if date.wday == 6 date end