Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. class UsersController < ApplicationController
  2.   def index
  3.     @users = User.all
  4.     respond_to do |format|
  5.       format.html { render 'index' }
  6.       format.xml { render xml: @users }
  7.       format.json { render json: @users }
  8.       format.pdf { render pdf: @file }
  9.     end
  10.   end
  11. end