Skip to content

Instantly share code, notes, and snippets.

@enebo
Created May 29, 2015 20:32
Show Gist options
  • Save enebo/9b8ae58224e8daebce45 to your computer and use it in GitHub Desktop.
Save enebo/9b8ae58224e8daebce45 to your computer and use it in GitHub Desktop.
module A
def cvar
@@cvar = 1
end
end
class B
include A.dup
end
B.new.cvar
p A.class_variables
p B.class_variables
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment