Sha256: 5e5e2052829273d385aacfe534cab1673474ffe9f19e14e6bbb8390c6033dd42

Contents?: true

Size: 1.65 KB

Versions: 5

Compression:

Stored size: 1.65 KB

Contents

########################################
########################################
##    _____            _              ##
##   | ___ \          | |             ##
##   | |_/ /___  _   _| |_ ___  ___   ##
##   |    // _ \| | | | __/ _ \/ __|  ##
##   | |\ \ (_) | |_| | ||  __/\__ \  ##
##   \_| \_\___/ \__,_|\__\___||___/  ##
##                                    ##
########################################
########################################

## Good resource
## https://gist.github.com/maxivak/5d428ade54828836e6b6#merge-engine-and-app-routes

########################################
########################################

## Routes ##
Rails.application.routes.draw do

  ########################################
  ########################################

    # => CKEditor
    mount Ckeditor::Engine => '/ckeditor' if Gem.loaded_specs.has_key? "ckeditor"

    # => Admin
    devise_for :users, ActiveAdmin::Devise.config
    ActiveAdmin.routes(self)

  ########################################
  ########################################

    # Index
    # => Shows index of app
    root "application#show"

  ########################################
  ########################################

    # Robots.txt
    # => https://blog.ragnarson.com/2013/11/15/hide-your-staging-environment-from-google.html
    get "robots.txt" => "application#robots", as: :robots

  ########################################
  ########################################

    # => Everything else
    # => Nodes shown through system
    resources :application, only: :show, path: "" # => url.com/:id

  ########################################
  ########################################

end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
fl-0.3.4 config/routes.rb
fl-0.3.3 config/routes.rb
fl-0.3.2 config/routes.rb
fl-0.3.1 config/routes.rb
fl-0.3.0 config/routes.rb