People,
Lately I’ve been using the .name() method of classes.
For example:
Person.name => “Person”
Today… I’d like to do the inverse:
“Person”.to_class => Person
How do I transform a string into a class? I’m working with a Rails app where I need to get names of AR classes at run-time.
-Peter