asciinema.org/app/controllers/docs_controller.rb
2014-07-05 20:16:57 +02:00

11 lines
221 B
Ruby

class DocsController < ApplicationController
layout 'docs'
rescue_from ActionView::MissingTemplate, with: :handle_not_found
def show
@current_category = params[:page].to_sym
render params[:page]
end
end