Methods
- A
Included Modules
- Routes
Constants
| Routes | = | ActionDispatch::Routing::RouteSet.new.tap do |app| app.draw do ok = lambda { |env| [200, { 'Content-Type' => 'text/plain' }, []] } get "/~user" => ok get "/young-and-fine" => ok end end |
| APP | = | build_app Routes |
Instance Public methods