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
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 Biedenharn Rob@AgileConsultingLLC.com http://AgileConsultingLLC.com/ rab@GaslightSoftware.com http://GaslightSoftware.com/
Heh, thanks, I`ve tryed something like that, but well probably not the same Thanks a lot!