Skip to content

Instantly share code, notes, and snippets.

@joannecheng
Created November 2, 2012 14:58
Show Gist options
  • Save joannecheng/4001852 to your computer and use it in GitHub Desktop.
Save joannecheng/4001852 to your computer and use it in GitHub Desktop.
Ruby Bindings
class SampleClass
def initialize
@str = "The Quick Brown Fox"
end
def get_binding
binding
end
end
eval("puts @str", SampleClass.new.get_binding)
# => "The Quick Brown Fox"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment