module RailsContrib module ActionController module Base def self.included(base) base.class_eval do if Rails.env == 'development' rescue_from Exception, :with => :error end end end protected def error(exception) logger.error exception.message exception.backtrace.each { |line| logger.error line } render :file => Rails.root.join('public', '500.html'), :status => 500, :layout => false end def not_found render :file => Rails.root.join('public', '404.html'), :status => 404, :layout => false end def forbidden render :file => Rails.root.join('public', '422.html'), :status => 422, :layout => false end def redirect_with_flash(path, type, flash, params=nil) path = (params.nil? ? path : (params[:back].present? ? params[:back] : path)) redirect_to path, { :flash => { type => (flash.is_a?(Array) ? flash : [flash]) } } end def flash_errors(source) flash[:error] = [] unless flash[:error].is_a? Array case source when String flash[:error] << source when Array source.each { |error| flash[:errors] << error } else source.errors.full_messages.each { |error| flash[:error] << error } end end end end end