# File lib/plugins/say.rb, line 7 def say(who, what) voices = %w(Alex Alex Bruce Fred Ralph Agnes Kathy Vicki) voice = voices[who.hash % voices.size] system 'say', '-v', voice, what end