class ActionDispatch::Routing::Mapper

Public Instance Methods

mount_sextant() click to toggle source

Includes mount_sextant method for routes. This method is responsible to generate all needed routes for sextant

# File lib/rails/routes.rb, line 5
def mount_sextant
  get "rails/routes" => "sextant/routes#index"
  mount Sextant::Engine => "/sextant", :as => "sextant_engine"
end