Skip to content

Instantly share code, notes, and snippets.

@ericcf
Created June 22, 2011 14:47
Show Gist options
  • Save ericcf/1040248 to your computer and use it in GitHub Desktop.
Save ericcf/1040248 to your computer and use it in GitHub Desktop.
class IngredientsController < ApplicationController
respond_to :json
def index
respond_with Ingredient.all
end
def show
respond_with Ingredient.find(params[:id])
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment