CONTENT-TYPE for "render :text => 'som text'"

Want to make it easy and clean

Sometimes I do render :text => obj.to_yaml

I want it to be formated as it would be with header text/plain
But rails sets it to text/html

Would be perfect to have:
render :plain_text => obj.inspect

On Nov 24, 2010, at 4:07 PM, Vitaliy Y. wrote:

Want to make it easy and clean

Sometimes I do render :text => obj.to_yaml

I want it to be formated as it would be with header text/plain
But rails sets it to text/html

Would be perfect to have:
render :plain_text => obj.inspect

render :text => obj.inspect, :content_type => ‘text/plain’

-Rob

Rob B.
[email protected] http://AgileConsultingLLC.com/
[email protected] http://GaslightSoftware.com/

Heh, thanks, I`ve tryed something like that, but well probably not the
same
Thanks a lot!