123456789_123456789_123456789_123456789_123456789_

Rails on Rack

This guide covers Rails integration with Rack and interfacing with other Rack components.

After reading this guide, you will know:


WARNING: This guide assumes a working knowledge of Rack protocol and Rack concepts such as middlewares, url maps and Rack::Builder.

Introduction to Rack

Rack provides a minimal, modular and adaptable interface for developing web applications in Ruby. By wrapping HTTP requests and responses in the simplest way possible, it unifies and distills the API for web servers, web frameworks, and software in between (the so-called middleware) into a single method call.

Explaining Rack is not really in the scope of this guide. In case you are not familiar with Rack's basics, you should check out the Resources section below.

Rails on Rack

Rails Application's Rack Object

Rails.application is the primary Rack application object of a Rails application. Any Rack compliant web server should be using Rails.application object to serve a Rails application.

rails server

rails server does the basic job of creating a Rack::Server object and starting the webserver.

Here's how rails server creates an instance of Rack::Server

Rails::Server.new.tap do |server|
  require APP_PATH
  Dir.chdir(Rails.application.root)
  server.start
end

The ::Rails::Server inherits from Rack::Server and calls the Rack::Server#start method this way:

class Server < ::Rack::Server
  def start
    #...
    super
  end
end

Here's how it loads the middlewares:

def middleware
  middlewares = []
  middlewares << [Rails::Rack::Debugger] if options[:debugger]
  middlewares << [::Rack::ContentLength]
  Hash.new(middlewares)
end

::Rails::Rack::Debugger is primarily useful only in the development environment. The following table explains the usage of the loaded middlewares:

Middleware Purpose
::Rails::Rack::Debugger Starts Debugger
Rack::ContentLength Counts the number of bytes in the response and set the HTTP Content-Length header

rackup

To use rackup instead of Rails' rails server, you can put the following inside config.ru of your Rails application's root directory:

# Rails.root/config.ru
require ::File.expand_path('../config/environment', __FILE__)

use Rack::ContentLength
run Rails.application

And start the server:

$ rackup config.ru

To find out more about different rackup options:

$ rackup --help

Development and auto-reloading

Middlewares are loaded once and are not monitored for changes. You will have to restart the server for changes to be reflected in the running application.

Action Dispatcher Middleware Stack

Many of Action Dispatcher's internal components are implemented as Rack middlewares. ::Rails::Application uses ::ActionDispatch::MiddlewareStack to combine various internal and external middlewares to form a complete Rails Rack application.

NOTE: ::ActionDispatch::MiddlewareStack is Rails equivalent of Rack::Builder, but built for better flexibility and more features to meet Rails' requirements.

Inspecting Middleware Stack

Rails has a handy rake task for inspecting the middleware stack in use:

$ bin/rake middleware

For a freshly generated Rails application, this might produce something like:

use Rack::Sendfile
use ActionDispatch::Static
use Rack::Lock
use #<ActiveSupport::Cache::Strategy::LocalCache::Middleware:0x000000029a0838>
use Rack::Runtime
use Rack::MethodOverride
use ActionDispatch::RequestId
use Rails::Rack::Logger
use ActionDispatch::ShowExceptions
use ActionDispatch::DebugExceptions
use ActionDispatch::RemoteIp
use ActionDispatch::Reloader
use ActionDispatch::Callbacks
use ActiveRecord::Migration::CheckPending
use ActiveRecord::ConnectionAdapters::ConnectionManagement
use ActiveRecord::QueryCache
use ActionDispatch::Cookies
use ActionDispatch::Session::CookieStore
use ActionDispatch::Flash
use ActionDispatch::ParamsParser
use Rack::Head
use Rack::ConditionalGet
use Rack::ETag
run Rails.application.routes

The default middlewares shown here (and some others) are each summarized in the Internal Middlewares section, below.

Configuring Middleware Stack

Rails provides a simple configuration interface config.middleware for adding, removing and modifying the middlewares in the middleware stack via application.rb or the environment specific configuration file environments/<environment>.rb.

Adding a Middleware

You can add a new middleware to the middleware stack using any of the following methods:

# config/application.rb

# Push Rack::BounceFavicon at the bottom
config.middleware.use Rack::BounceFavicon

# Add Lifo::Cache after ActiveRecord::QueryCache.
# Pass { page_cache: false } argument to Lifo::Cache.
config.middleware.insert_after ActiveRecord::QueryCache, Lifo::Cache, page_cache: false

Swapping a Middleware

You can swap an existing middleware in the middleware stack using config.middleware.swap.

# config/application.rb

# Replace ActionDispatch::ShowExceptions with Lifo::ShowExceptions
config.middleware.swap ActionDispatch::ShowExceptions, Lifo::ShowExceptions

Deleting a Middleware

Add the following lines to your application configuration:

# config/application.rb
config.middleware.delete "Rack::Lock"

And now if you inspect the middleware stack, you'll find that Rack::Lock is not a part of it.

$ bin/rake middleware
(in /Users/lifo/Rails/blog)
use ActionDispatch::Static
use #<ActiveSupport::Cache::Strategy::LocalCache::Middleware:0x00000001c304c8>
use Rack::Runtime
...
run Rails.application.routes

If you want to remove session related middleware, do the following:

# config/application.rb
config.middleware.delete "ActionDispatch::Cookies"
config.middleware.delete "ActionDispatch::Session::CookieStore"
config.middleware.delete "ActionDispatch::Flash"

And to remove browser related middleware,

# config/application.rb
config.middleware.delete "Rack::MethodOverride"

Internal Middleware Stack

Much of Action Controller's functionality is implemented as Middlewares. The following list explains the purpose of each of them:

Rack::Sendfile

::ActionDispatch::Static

Rack::Lock

::ActiveSupport::Cache::Strategy::LocalCache::Middleware

Rack::Runtime

Rack::MethodOverride

::ActionDispatch::RequestId

::Rails::Rack::Logger

::ActionDispatch::ShowExceptions

::ActionDispatch::DebugExceptions

::ActionDispatch::RemoteIp

::ActionDispatch::Reloader

::ActionDispatch::Callbacks

::ActiveRecord::Migration::CheckPending

::ActiveRecord::ConnectionAdapters::ConnectionManagement

::ActiveRecord::QueryCache

::ActionDispatch::Cookies

::ActionDispatch::Session::CookieStore

::ActionDispatch::Flash

::ActionDispatch::ParamsParser

Rack::Head

Rack::ConditionalGet

Rack::ETag

TIP: It's possible to use any of the above middlewares in your custom Rack stack.

Resources

Learning Rack

Understanding Middlewares