Skip to content

Instantly share code, notes, and snippets.

@davidpelaez
Created August 7, 2012 15:40
Show Gist options
  • Save davidpelaez/3286483 to your computer and use it in GitHub Desktop.
Save davidpelaez/3286483 to your computer and use it in GitHub Desktop.
class EntriesController < ApplicationController
respond_to :json
def index
respond_with Entry.all
end
def show
respond_with Entry.find(params[:id])
end
def create
respond_with Entry.create(params[:entry])
end
def update
respond_with Entry.update(params[:id], params[:entry])
end
def destroy
respond_with Entry.destroy(params[:id])
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment