Having a string with the module and name of a class, like:
\"Admin::MetaDatasController\"
how do I get the actual class?
The follow
i could be way off-base, but wouldn't eval return the class?
eval("Admin::MetaDatasController")
so eval("Admin::MetaDatasController").new would be the same as Admin::MetaDatasController.new
eval("Admin::MetaDatasController").new
Admin::MetaDatasController.new