Skip to content

Instantly share code, notes, and snippets.

@nusco
Created August 18, 2010 15:32
Show Gist options
  • Save nusco/535147 to your computer and use it in GitHub Desktop.
Save nusco/535147 to your computer and use it in GitHub Desktop.
Spell: Self Yield
# =================
# 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