Skip to content

Instantly share code, notes, and snippets.

@naaman
Created February 18, 2014 23:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save naaman/9082740 to your computer and use it in GitHub Desktop.
Save naaman/9082740 to your computer and use it in GitHub Desktop.
irb(main):001:0> class Request; end
=> nil
irb(main):002:0> Request.class
=> Class
irb(main):003:0> Request.new.class
=> Request
irb(main):004:0> Request.new.class.to_s
=> "Request"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment