Skip to content

Instantly share code, notes, and snippets.

@sheldonh
Created April 14, 2009 09:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sheldonh/95093 to your computer and use it in GitHub Desktop.
Save sheldonh/95093 to your computer and use it in GitHub Desktop.
def ignoring_nil_associations
begin
yield
rescue NoMethodError => error
if error.message =~ /nil:NilClass/
nil
else
raise error
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment