Skip to content

Instantly share code, notes, and snippets.

View rmcsharry's full-sized avatar
💭
Building my own SaaS apps in Angular and Rails

Richard McSharry rmcsharry

💭
Building my own SaaS apps in Angular and Rails
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