Fork Of

Revisions

  • 7a05e5 dkubb Thu Aug 14 19:25:58 -0700 2008
gist: 24368 Download_button fork
public
Public Clone URL: git://gist.github.com/24368.git
Embed All Files: show embed
Text #
1
2
3
4
5
6
7
8
9
10
11
12
13
resource 'posts/:id' do
  get do |id|
    # show post id
  end
 
  delete do |id|
    # destroy post id
  end
 
  get 'comments' do |id|
    # show this post's comments
  end
end