我有一个错误地生成它的代码,我认为必须有更好的方法来检查时间 > 9.30 am 和时间 < 4 pm 任何想法都受到高度赞赏。
def checkTime
goodtime=false
if(Time.now.hour>9 and Time.now.min>30) then
if(Time.now.hour<16) then
goodtime=true
else
# do nothing
end
elsif Time.now.hour>9 and Time.now.hour<16 then
goodtime=true
else
# do nothing
end
return goodtime
end