Use ActionController::Metal
class Api::V1::BaseController < ActionController::Metal
include ActionController::Rendering # enables rendering
include ActionController::MimeResponds # enables serving different content types like :xml or :json
include AbstractController::Callbacks # callbacks for your authentication logic
append_view_path "#{Rails.root}/app/views" # you have to specify your views location as well
endNote : when using Peek with Unicorn or something similar change the adapter from memory to redis or dalli