webmat (owner)

Revisions

gist: 15920 Download_button fork
public
Description:
Check out the values of all instance variables in object 'o'
Public Clone URL: git://gist.github.com/15920.git
Embed All Files: show embed
Text #
1
2
3
4
5
# Check out the values of all instance variables in object 'o':
 
o.instance_variables.inject({}) {|memo,v|
  memo.merge!(v=>s.instance_eval(v))
}