GitHub Sale: sign up for any paid plan this week and pay nothing until January 1, 2009!  [ hide ]

public
Rubygem
Description: Resource-oriented open source Ruby framework for Web apps.
Homepage: http://rubywaves.com/
Clone URL: git://github.com/dyoder/waves.git
removing debugger statement
automatthew (author)
Tue Aug 19 09:23:54 -0700 2008
commit  b78c3d20a24bf457d70ace157554f8f7ca835171
tree    5aad3840b2bb1ca38beec213987312d1778b244c
parent  2673f667f7a042a1d1ec80f6c18424a3b492ca1f
...
15
16
17
18
 
19
20
21
...
15
16
17
 
18
19
20
21
0
@@ -15,7 +15,7 @@ module Blog
0
       end
0
       
0
       # defaults for generic resources
0
- response( :list, :get => [ :resources ] ) { debugger ; action( :all ) and render( :list ) }
0
+ response( :list, :get => [ :resources ] ) { action( :all ) and render( :list ) }
0
       response( :create, :post => [ :resources ] ) { redirect( paths.read( action( :create ).name, 'edit' ) ) }
0
       response( :read, :get => [ :resource, :name, { :mode => 'show' } ] ) { action( :find, name ) and render( mode ) }
0
       response( :update, :put => [ :resource, :name ] ) { action( :update, name ) and redirect( paths.read( name ) ) }

Comments

    No one has commented yet.