Action Controller Metal ActionController::Metal is the simplest possible controller, providing a valid Rack interface without the additional niceties provided by ActionController::Base. A sample metal controller might look like this: class HelloController < ActionController::Metal def index self.response_body = "Hello World!" end end And then to route requests to your metal controller, you would a