Skip to content

Instantly share code, notes, and snippets.

@jbr
Created October 19, 2009 22:54
Show Gist options
  • Save jbr/213796 to your computer and use it in GitHub Desktop.
Save jbr/213796 to your computer and use it in GitHub Desktop.
>> ObjectSpace.each_object{|o| p o if Class === o && !o.instance_methods.include?('dup')}
#=> 98690
>> class Fixnum; undef :dup; end
#=> nil
>> ObjectSpace.each_object{|o| p o if Class === o && !o.instance_methods.include?('dup')}
Fixnum
#=> 122815
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment