About this user

Anton Kovalyov http://anton.kovalyov.net

« Newer Snippets
Older Snippets »
1 total  XML / RSS feed 

Default content-type in Rails

I always forget this.

class ApplicationController < ActionController::Base
  include AuthenticatedSystem
  
  before_filter :set_encoding
  
  private
    def set_encoding
      @headers["Content-type"] ||= "text/html; charset=utf8"
    end
end
« Newer Snippets
Older Snippets »
1 total  XML / RSS feed