Skip to content

Instantly share code, notes, and snippets.

@webmat
Created October 9, 2008 22:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save webmat/15920 to your computer and use it in GitHub Desktop.
Save webmat/15920 to your computer and use it in GitHub Desktop.
Check out the values of all instance variables in object 'o'
# Check out the values of all instance variables in object 'o':
o.instance_variables.inject({}) {|memo,v|
memo.merge!(v=>s.instance_eval(v))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment