Skip to content

Instantly share code, notes, and snippets.

@kardeiz
Created December 5, 2013 20:02
Show Gist options
  • Save kardeiz/7812863 to your computer and use it in GitHub Desktop.
Save kardeiz/7812863 to your computer and use it in GitHub Desktop.
Rails controller boilerplate - since I can never find it online
class TestsController < ApplicationController
# GET /tests
# GET /tests.json
def index
@tests = Test.all
respond_to do |format|
format.html # index.html.erb
format.json { render json: @tests }
end
end
# GET /tests/1
# GET /tests/1.json
def show
@test = Test.find(params[:id])
respond_to do |format|
format.html # show.html.erb
format.json { render json: @test }
end
end
# GET /tests/new
# GET /tests/new.json
def new
@test = Test.new
respond_to do |format|
format.html # new.html.erb
format.json { render json: @test }
end
end
# GET /tests/1/edit
def edit
@test = Test.find(params[:id])
end
# POST /tests
# POST /tests.json
def create
@test = Test.new(params[:test])
respond_to do |format|
if @test.save
format.html { redirect_to @test, notice: 'Test was successfully created.' }
format.json { render json: @test, status: :created, location: @test }
else
format.html { render action: "new" }
format.json { render json: @test.errors, status: :unprocessable_entity }
end
end
end
# PUT /tests/1
# PUT /tests/1.json
def update
@test = Test.find(params[:id])
respond_to do |format|
if @test.update_attributes(params[:test])
format.html { redirect_to @test, notice: 'Test was successfully updated.' }
format.json { head :no_content }
else
format.html { render action: "edit" }
format.json { render json: @test.errors, status: :unprocessable_entity }
end
end
end
# DELETE /tests/1
# DELETE /tests/1.json
def destroy
@test = Test.find(params[:id])
@test.destroy
respond_to do |format|
format.html { redirect_to tests_url }
format.json { head :no_content }
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment