aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/application.rb
blob: d762689794857b8a3ac88abf5b9df0c6f66c1c15 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'action_controller'

module Rails
  class Application
    def initialize
      @app = ActionController::Dispatcher.new
    end

    def call(env)
      @app.call(env)
    end
  end
end