Skip to content

Instantly share code, notes, and snippets.

@stevedev
Created September 20, 2013 21:05
Show Gist options
  • Save stevedev/6643892 to your computer and use it in GitHub Desktop.
Save stevedev/6643892 to your computer and use it in GitHub Desktop.
How to Klass
class User < ActiveRecord::Base;end
klass = 'User'
Kernel.const_get(klass)
# => User(id: integer)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment