Methods
A
Constants
Routes = ActionDispatch::Routing::RouteSet.new.tap do |app| app.draw do namespace :foo do namespace :bar do get "baz" => "baz#index" end end get "pooh" => "pooh#index" end end
 
APP = build_app Routes
 
Instance Public methods
app()
# File actionpack/test/dispatch/routing_test.rb, line 4047
def app; APP end