This is how to convert a string to a class in Rails/Ruby:
p = \"Post\" Kernel.const_get(p) eval(p) p.constantize
But what if I am retrievin
Post.send(anything)