Created
January 3, 2015 20:52
-
-
Save TheKidCoder/d5c02b987af37b7fbafb to your computer and use it in GitHub Desktop.
Simple method call cascading.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def title | |
[:full_name, :first_name, :name].find {|meth| object.respond_to?(meth)}.tap {|meth| return object.method(meth).call} | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment