Skip to content

Instantly share code, notes, and snippets.

@ngaloppo
Created October 4, 2010 22:53
Show Gist options
  • Save ngaloppo/610614 to your computer and use it in GitHub Desktop.
Save ngaloppo/610614 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