class Chronic::Date

def self.could_be_day?(day)

Checks if given number could be day
def self.could_be_day?(day)
  day >= 1 && day <= 31
end