Skip to content

Instantly share code, notes, and snippets.

View rmcsharry's full-sized avatar
🎯
Focusing

Richard McSharry rmcsharry

🎯
Focusing
View GitHub Profile
class Bob
def reply_to(statement)
public_send("reply_to_#{Statement.build(statement).class}".downcase.to_sym)
rescue NoMethodError
default_reply
end
def reply_to_silence
"Fine. Be that way!"
end