Skip to content

Instantly share code, notes, and snippets.

@leehambley
Created November 15, 2012 20:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save leehambley/4081205 to your computer and use it in GitHub Desktop.
Save leehambley/4081205 to your computer and use it in GitHub Desktop.
class WidgetsController < ApplicationController
# GET /widgets
# GET /widgets.json
def index
@widgets = Widget.all
respond_to do |format|
format.html # index.html.erb
format.json { render json: @widgets }
end
end
# GET /widgets/1
# GET /widgets/1.json
def show
@widget = Widget.find(params[:id])
respond_to do |format|
format.html # show.html.erb
format.json { render json: @widget }
end
end
# GET /widgets/new
# GET /widgets/new.json
def new
@widget = Widget.new
respond_to do |format|
format.html # new.html.erb
format.json { render json: @widget }
end
end
# GET /widgets/1/edit
def edit
@widget = Widget.find(params[:id])
end
# POST /widgets
# POST /widgets.json
def create
@widget = Widget.new(params[:widget])
respond_to do |format|
if @widget.save
format.html { redirect_to @widget, notice: 'Widget was successfully created.' }
format.json { render json: @widget, status: :created, location: @widget }
else
format.html { render action: "new" }
format.json { render json: @widget.errors, status: :unprocessable_entity }
end
end
end
# PUT /widgets/1
# PUT /widgets/1.json
def update
@widget = Widget.find(params[:id])
respond_to do |format|
if @widget.update_attributes(params[:widget])
format.html { redirect_to @widget, notice: 'Widget was successfully updated.' }
format.json { head :no_content }
else
format.html { render action: "edit" }
format.json { render json: @widget.errors, status: :unprocessable_entity }
end
end
end
# DELETE /widgets/1
# DELETE /widgets/1.json
def destroy
@widget = Widget.find(params[:id])
@widget.destroy
respond_to do |format|
format.html { redirect_to widgets_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