Created
May 1, 2009 22:22
-
-
Save celldee/105299 to your computer and use it in GitHub Desktop.
Ruby - creating objects from strings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Create uninstantiated class from a string | |
========================================= | |
Object::const_get('String') | |
Create instantiated class from a string | |
======================================= | |
Object::const_get('String').new |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment