A gem for Rails 3.0 adding the ‘responders` method to ActionController::Base, allowing you to setup per controller which responders you want included.
class InvitationsController < ApplicationController responders :pagination, :ordering end
You can just require it in your Gemfile:
gem 'easy_responders'