Skip to content

Instantly share code, notes, and snippets.

@ngpestelos
Last active December 22, 2015 18:49
Show Gist options
  • Save ngpestelos/6515639 to your computer and use it in GitHub Desktop.
Save ngpestelos/6515639 to your computer and use it in GitHub Desktop.
instance_eval
# see Metaprogramming Ruby, p. 74
class MyClass
def initialize
@v = 1
end
end
obj = MyClass.new
obj.instance_eval do
puts self
puts @v # 1
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment