Skip to content

Instantly share code, notes, and snippets.

@donaldr
Created September 28, 2010 21:33
Show Gist options
  • Save donaldr/601824 to your computer and use it in GitHub Desktop.
Save donaldr/601824 to your computer and use it in GitHub Desktop.
def yield_or_eval &block
return unless block
if block.arity > 0
yield self
else
self.instance_eval(&block)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment