unicorn.git  about / heads / tags
Rack HTTP server for Unix and fast clients
blob bb9577a41322baf228095b8d50f4ed9edeeac041 673 bytes (raw)
$ git show v0.4.1:lib/unicorn/app/old_rails.rb	# shows this blob on the CLI

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
 
# This code is based on the original Rails handler in Mongrel
# Copyright (c) 2005 Zed A. Shaw
# Copyright (c) 2009 Eric Wong
# You can redistribute it and/or modify it under the same terms as Ruby.
# Additional work donated by contributors.  See CONTRIBUTORS for more info.
require 'unicorn/cgi_wrapper'
require 'dispatcher'

module Unicorn; module App; end; end

# Implements a handler that can run Rails.
class Unicorn::App::OldRails

  def call(env)
    cgi = Unicorn::CGIWrapper.new(env)
    Dispatcher.dispatch(cgi,
        ActionController::CgiRequest::DEFAULT_SESSION_OPTIONS,
        cgi.body)
    cgi.out  # finalize the response
    cgi.rack_response
  end

end

git clone https://yhbt.net/unicorn.git