dchelimsky (owner)

Fork Of

Revisions

gist: 24369 Download_button fork
public
Public Clone URL: git://gist.github.com/24369.git
Embed All Files: show embed
Text #
1
2
3
4
5
6
7
8
9
10
11
12
13
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