You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
asciinema.org/app/controllers/docs_controller.rb

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