Sha256: 5baa6fb796056b7cbb06421cf4b57a92ad727828623d92bd2e171345a364b69b

Contents?: true

Size: 1.94 KB

Versions: 22

Compression:

Stored size: 1.94 KB

Contents

class PlanetsController < ApplicationController
  # GET /planets
  # GET /planets.json
  def index
    @planets = Planet.all

    respond_to do |format|
      format.html # index.html.erb
      format.json { render :json => @planets }
    end
  end

  # GET /planets/1
  # GET /planets/1.json
  def show
    @planet = Planet.find(params[:id])

    respond_to do |format|
      format.html # show.html.erb
      format.json { render :json => @planet }
    end
  end

  # GET /planets/new
  # GET /planets/new.json
  def new
    @planet = Planet.new

    respond_to do |format|
      format.html # new.html.erb
      format.json { render :json => @planet }
    end
  end

  # GET /planets/1/edit
  def edit
    @planet = Planet.find(params[:id])
  end

  # POST /planets
  # POST /planets.json
  def create
    @planet = Planet.new(params[:planet])

    respond_to do |format|
      if @planet.save
        format.html { redirect_to @planet, :notice => 'Planet was successfully created.' }
        format.json { render :json => @planet, :status => :created, :location => @planet }
      else
        format.html { render :action => "new" }
        format.json { render :json => @planet.errors, :status => :unprocessable_entity }
      end
    end
  end

  # PUT /planets/1
  # PUT /planets/1.json
  def update
    @planet = Planet.find(params[:id])

    respond_to do |format|
      if @planet.update_attributes(params[:planet])
        format.html { redirect_to @planet, :notice => 'Planet was successfully updated.' }
        format.json { head :no_content }
      else
        format.html { render :action => "edit" }
        format.json { render :json => @planet.errors, :status => :unprocessable_entity }
      end
    end
  end

  # DELETE /planets/1
  # DELETE /planets/1.json
  def destroy
    @planet = Planet.find(params[:id])
    @planet.destroy

    respond_to do |format|
      format.html { redirect_to planets_url }
      format.json { head :no_content }
    end
  end
end

Version data entries

22 entries across 6 versions & 1 rubygems

Version Path
tabulous-1.3.2 spec/applications/main/rails_3-2-13/app/controllers/planets_controller.rb
tabulous-1.3.2 spec/applications/simple_tabs/rails_3-2-13/app/controllers/planets_controller.rb