One of my model objects has a \'text\' column that contains the full HTML of a web page.
I\'d like to write a controller action that simply returns this HTML direc
In latest Rails (4.1.x), at least, this is much simpler than the accepted answer:
def show render html: 'html goes here'.html_safe end