Entries from 2007-10-23 to 1 day

メルマガねた.代替案

(0..23).reject { |hour| hour == 9 or hour == 18 }.each { |hour| ... }全体を囲むのもありか.... class Greeting def say return "hello!" if Time.now.hour == 9 return "good bye!" if Time.now.hour == 18 "hay!" end end describe Greeting, "at …