# File lib/runt/temporalexpression.rb, line 246 def print(date) puts "DIMonth: #{date}" puts "include? == #{include?(date)}" puts "day_matches? == #{day_matches?(date)}" puts "week_matches? == #{week_matches?(date)}" puts "week_from_start_matches? == #{week_from_start_matches?(date)}" puts "week_from_end_matches? == #{week_from_end_matches?(date)}" puts "days_left_in_month == #{days_left_in_month(date)}" puts "max_day_of_month == #{max_day_of_month(date)}" end