I have a string that contains some interpolated statements, like description='Hello! I am #{self.name}'. This string is stored as-is in the database; so without the automatic string interpolation applied.
I want to apply this interpolation at a later date. I could do something crazy like eval("\"+description+\"") but there has to be a nicer, more ruby-esque way to do this, right?