Skip to content

Instantly share code, notes, and snippets.

@kkismd
Created August 1, 2014 06:06
Show Gist options
  • Save kkismd/f8ffad2e285e996d13c0 to your computer and use it in GitHub Desktop.
Save kkismd/f8ffad2e285e996d13c0 to your computer and use it in GitHub Desktop.
Uncertain method chain without #try, another ver.
module Kernel
def maybe
block_given? && yield
rescue NoMethodError
end
end
@kkismd
Copy link
Author

kkismd commented Aug 1, 2014

How To Use

<%= maybe { foo.bar.baz } %>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment