class Chronic::Time

def self.could_be_hour?(hour)

Checks if given number could be hour
def self.could_be_hour?(hour)
  hour >= 0 && hour <= 24
end