Skip to content

Instantly share code, notes, and snippets.

@Mon-Ouie
Created August 21, 2012 17:11
Show Gist options
  • Save Mon-Ouie/3417427 to your computer and use it in GitHub Desktop.
Save Mon-Ouie/3417427 to your computer and use it in GitHub Desktop.
class Foo
@ivar = "class ivar"
def initialize
@ivar = "instance ivar"
end
end
puts Foo.instance_variable_get(:@ivar) # class ivar
puts Foo.new.instance_variable_get(:@ivar) # instance ivar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment