public
Rubygem
Description: JSON Web App Framework
Homepage: http://halcyon.rubyforge.org/
Clone URL: git://github.com/mtodd/halcyon.git
Click here to lend your support to: halcyon and make a donation at www.pledgie.com !
Fixed inaccuracy in the client documentation.
mtodd (author)
Thu Jun 12 15:45:51 -0700 2008
commit  84d7025399d71469f6ddf5b0d5215d1b7e073fd6
tree    050d2d830a8b4b2a20e6b369f634811bef7eeb62
parent  7b7965642c2246acdfeace52cb09f82fdd484d4b
...
32
33
34
35
 
 
 
 
 
36
37
38
...
32
33
34
 
35
36
37
38
39
40
41
42
0
@@ -32,7 +32,11 @@ class Messages < Application
0
   end
0
   
0
   def show
0
- ok Message[params[:id]]
0
+ if (msg = Message[params[:id]])
0
+ ok msg
0
+ else
0
+ raise NotFound.new
0
+ end
0
   end
0
   
0
   def create

Comments

    No one has commented yet.