Sha256: 25af806eb21f654b7556860c6489cc61edc4000364121e7d6d5ed1bd0c41bde0

Contents?: true

Size: 1.98 KB

Versions: 28

Compression:

Stored size: 1.98 KB

Contents

class <%= controller_class_name %>Controller < ApplicationController
  def index
    @<%= table_name %> = <%= class_name %>.find(:all)

    respond_to do |format|
      format.html
      format.xml  { render :xml => @<%= table_name %> }
    end
  end

  def show
    @<%= file_name %> = <%= class_name %>.find(params[:id])

    respond_to do |format|
      format.html
      format.xml  { render :xml => @<%= file_name %> }
    end
  end

  def new
    @<%= file_name %> = <%= class_name %>.new

    respond_to do |format|
      format.html
      format.xml  { render :xml => @<%= file_name %> }
    end
  end

  def edit
    @<%= file_name %> = <%= class_name %>.find(params[:id])
  end

  def create
    @<%= file_name %> = <%= class_name %>.new(params[:<%= file_name %>])

    respond_to do |format|
      if @<%= file_name %>.save
        flash[:notice] = '<%= singular_name.humanize %> was successfully created.'
        format.html { redirect_to(@<%= file_name %>) }
        format.xml  { render :xml => @<%= file_name %>, :status => :created, :location => @<%= file_name %> }
      else
        format.html { render :action => "new" }
        format.xml  { render :xml => @<%= file_name %>.errors, :status => :unprocessable_entity }
      end
    end
  end

  def update
    @<%= file_name %> = <%= class_name %>.find(params[:id])

    respond_to do |format|
      if @<%= file_name %>.update_attributes(params[:<%= file_name %>])
        flash[:notice] = '<%= singular_name.humanize %> was successfully updated.'
        format.html { redirect_to(@<%= file_name %>) }
        format.xml  { head :ok }
      else
        format.html { render :action => "edit" }
        format.xml  { render :xml => @<%= file_name %>.errors, :status => :unprocessable_entity }
      end
    end
  end

  def destroy
    @<%= file_name %> = <%= class_name %>.find(params[:id])
    @<%= file_name %>.destroy

    respond_to do |format|
      format.html { redirect_to(<%= table_name %>_url) }
      format.xml  { head :ok }
    end
  end
end

Version data entries

28 entries across 28 versions & 7 rubygems

Version Path
drd-shoulda_generator-0.2.1 rails_generators/shoulda_scaffold/templates/controller.rb
jeffleeismyhero-shoulda_generator-0.3.0 rails_generators/shoulda_scaffold/templates/controller.rb
jeffleeismyhero-shoulda_generator-0.3.1 rails_generators/shoulda_scaffold/templates/controller.rb
martijn-shoulda_generator-0.2.1 rails_generators/shoulda_scaffold/templates/controller.rb
martijn-shoulda_generator-0.2.2 rails_generators/shoulda_scaffold/templates/controller.rb
mattyoho-shoulda_generator-0.2.1 rails_generators/shoulda_scaffold/templates/controller.rb
technicalpickles-shoulda_generator-0.2.1 rails_generators/shoulda_scaffold/templates/controller.rb
shoulda_machinist_generator-0.4.4 rails_generators/shoulda_machinist_scaffold/templates/controller.rb
shoulda_machinist_generator-0.4.3 rails_generators/shoulda_machinist_scaffold/templates/controller.rb
shoulda_machinist_generator-0.4.2 rails_generators/shoulda_machinist_scaffold/templates/controller.rb
shoulda_machinist_generator-0.4.1 rails_generators/shoulda_machinist_scaffold/templates/controller.rb
shoulda_machinist_generator-0.4.0 rails_generators/shoulda_machinist_scaffold/templates/controller.rb
shoulda_generator-1.3.5 rails_generators/shoulda_scaffold/templates/controller.rb
shoulda_generator-0.2.2 rails_generators/shoulda_scaffold/templates/controller.rb
shoulda_generator-1.3.4 rails_generators/shoulda_scaffold/templates/controller.rb
shoulda_generator-1.3.3 rails_generators/shoulda_scaffold/templates/controller.rb
shoulda_generator-1.3.2 rails_generators/shoulda_scaffold/templates/controller.rb
shoulda_machinist_generator-0.3.4 rails_generators/shoulda_machinist_scaffold/templates/controller.rb
shoulda_machinist_generator-0.3.3 rails_generators/shoulda_machinist_scaffold/templates/controller.rb
shoulda_machinist_generator-0.3.2 rails_generators/shoulda_machinist_scaffold/templates/controller.rb