Sha256: 6203e64942a53a16697f1049550f78532b6a251344b4936b3ce9863b7793a102

Contents?: true

Size: 1.72 KB

Versions: 7

Compression:

Stored size: 1.72 KB

Contents

class UsersController < ApplicationController
  # GET /users
  # GET /users.xml
  def index
    @users = User.find(:all)

    respond_to do |format|
      format.html # index.rhtml
      format.xml  { render :xml => @users.to_xml }
    end
  end

  # GET /users/1
  # GET /users/1.xml
  def show
    @user = User.find(params[:id])

    respond_to do |format|
      format.html # show.rhtml
      format.xml  { render :xml => @user.to_xml }
    end
  end

  # GET /users/new
  def new
    @user = User.new
  end

  # GET /users/1;edit
  def edit
    @user = User.find(params[:id])
  end

  # POST /users
  # POST /users.xml
  def create
    @user = User.new(params[:user])

    respond_to do |format|
      if @user.save
        flash[:notice] = 'User was successfully created.'
        format.html { redirect_to user_url(@user) }
        format.xml  { head :created, :location => user_url(@user) }
      else
        format.html { render :action => "new" }
        format.xml  { render :xml => @user.errors.to_xml }
      end
    end
  end

  # PUT /users/1
  # PUT /users/1.xml
  def update
    @user = User.find(params[:id])

    respond_to do |format|
      if @user.update_attributes(params[:user])
        flash[:notice] = 'User was successfully updated.'
        format.html { redirect_to user_url(@user) }
        format.xml  { head :ok }
      else
        format.html { render :action => "edit" }
        format.xml  { render :xml => @user.errors.to_xml }
      end
    end
  end

  # DELETE /users/1
  # DELETE /users/1.xml
  def destroy
    @user = User.find(params[:id])
    @user.destroy

    flash[:notice] = "User was removed"

    respond_to do |format|
      format.html { redirect_to users_url }
      format.xml  { head :ok }
    end
  end
end

Version data entries

7 entries across 7 versions & 4 rubygems

Version Path
jcnetdev-shoulda-4.2 test/rails_root/app/controllers/users_controller.rb
technicalpickles-shoulda-2.0.0 test/rails_root/app/controllers/users_controller.rb
technicalpickles-shoulda-2.0.1 test/rails_root/app/controllers/users_controller.rb
thoughtbot-shoulda-2.0.0 test/rails_root/app/controllers/users_controller.rb
thoughtbot-shoulda-2.0.1 test/rails_root/app/controllers/users_controller.rb
shoulda-2.0.0 test/rails_root/app/controllers/users_controller.rb
shoulda-2.0.1 test/rails_root/app/controllers/users_controller.rb