class Chronic::Date

def self.could_be_month?(month)

Checks if given number could be month
def self.could_be_month?(month)
  month >= 1 && month <= 12
end