Skip to content

Instantly share code, notes, and snippets.

@vishaltelangre
Created April 17, 2013 17:14
Show Gist options
  • Save vishaltelangre/5406080 to your computer and use it in GitHub Desktop.
Save vishaltelangre/5406080 to your computer and use it in GitHub Desktop.
Alternative to try try
def try_chain
yield
rescue NoMethodError
nil
end
def title
try_chain { output.data.title }
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment