accd9b4634
1 2
3 4 5 6 7 8 9 10 11
module Rails class Application def initialize @app = ActionController::Dispatcher.new end def call(env) @app.call(env) end end end