Skip to content

Instantly share code, notes, and snippets.

@solnic
Created June 29, 2011 09:56
Show Gist options
  • Select an option

  • Save solnic/1053556 to your computer and use it in GitHub Desktop.

Select an option

Save solnic/1053556 to your computer and use it in GitHub Desktop.
ruby-1.8.7-p334 :001 > c = Class.new String
=> #<Class:0xb76b7ee0>
ruby-1.8.7-p334 :002 > c.name
=> ""
ruby-1.9.2-p180 :001 > c = Class.new String
=> #<Class:0x9ad5a44>
ruby-1.9.2-p180 :002 > c.name
=> nil
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment