Skip to content

Instantly share code, notes, and snippets.

@koos
Created August 30, 2011 11:29
Show Gist options
  • Select an option

  • Save koos/1180699 to your computer and use it in GitHub Desktop.

Select an option

Save koos/1180699 to your computer and use it in GitHub Desktop.
app.rb rabl
# app/app.rb
get "/posts", :provides => [:json, :xml] do
@user = current_user
@posts = Post.order("id DESC")
render "posts/index"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment