dkubb (owner)

Forks

Revisions

  • 25ced0 dkubb Wed Nov 12 21:15:48 -0800 2008
  • 7a05e5 dkubb Thu Aug 14 19:25:58 -0700 2008
gist: 5524 Download_button fork
public
Public Clone URL: git://gist.github.com/5524.git
Embed All Files: show embed
Text #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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