Skip to content

Instantly share code, notes, and snippets.

@dkubb
Created August 15, 2008 02:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save dkubb/5524 to your computer and use it in GitHub Desktop.
Save dkubb/5524 to your computer and use it in GitHub Desktop.
resource 'posts/:id' do
get do |id|
# show post id
end
put do |id, post|
# change post id, with the body params in "post"
end
delete do |id|
# destroy post id
end
get 'comments' do |id|
# show this post's comments
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment