Skip to content

Instantly share code, notes, and snippets.

@meanphil
Created July 14, 2015 03:07
Show Gist options
  • Save meanphil/995d790ac9353ef25270 to your computer and use it in GitHub Desktop.
Save meanphil/995d790ac9353ef25270 to your computer and use it in GitHub Desktop.
irb(main):010:0> t = Class.new
=> #<Class:0x0000080cb48f48>
irb(main):011:0> t.instance_variables
=> []
irb(main):012:0> t.instance_eval { @pants = 'onyourhead' }
=> "onyourhead"
irb(main):013:0> t.instance_variables
=> [:@pants]
irb(main):014:0> t.instance_variable_get(:@pants)
=> "onyourhead"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment