Skip to content

Instantly share code, notes, and snippets.

@rbxbx
Created February 8, 2011 21:55
Show Gist options
  • Save rbxbx/817345 to your computer and use it in GitHub Desktop.
Save rbxbx/817345 to your computer and use it in GitHub Desktop.
eeevil
class Object
def try_chain *meths
meths.inject(self) do |res, meth|
break unless result = res.try(meth)
result
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment