I have something like this:
string = \"Post\"
I would like to convert the string to a class name literal. I use eval like this to convert t
You can try
class Post end Object.const_get("Post")
Which returns the Post class
Post