Skip to content

Instantly share code, notes, and snippets.

@zzak
Forked from nusco/self_yield.rb
Created September 13, 2010 16:53
Show Gist options
  • Save zzak/577590 to your computer and use it in GitHub Desktop.
Save zzak/577590 to your computer and use it in GitHub Desktop.
# =================
# Spell: Self Yield
# =================
# Pass self to the current block.
class Person
attr_accessor :name, :surname
def initialize
yield self
end
end
joe = Person.new do |p|
p.name = 'Joe'
p.surname = 'Smith'
end
# For more information: http://www.pragprog.com/titles/ppmetr/metaprogramming-ruby
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment