Skip to content

Instantly share code, notes, and snippets.

@dchelimsky
Forked from dkubb/gist:5524
Created November 13, 2008 05:04
Show Gist options
  • Save dchelimsky/24369 to your computer and use it in GitHub Desktop.
Save dchelimsky/24369 to your computer and use it in GitHub Desktop.
resource 'posts/:id' do |id|
get do
# show post id
end
delete do
# destroy post id
end
get :comments do
# 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