public
Rubygem
Description: Resource-oriented open source Ruby framework for Web apps.
Homepage: http://rubywaves.com/
Clone URL: git://github.com/dyoder/waves.git
only one block param needed
automatthew (author)
Wed Jul 23 10:01:17 -0700 2008
commit  c6d6850f355e97b96fb868929008ae2a59734556
tree    5a71b8256ff9ba18478acdc3b82339bacfc082da
parent  00b809b5284ae259df11eb7ab7abff3875007fbb
...
26
27
28
29
 
30
31
32
...
26
27
28
 
29
30
31
32
0
@@ -26,7 +26,7 @@ module Waves
0
     functor( :mapping ) { Waves.application.mapping }
0
     functor( :mapping, Object ) { | app | Waves.applications[ app.to_s ].mapping }
0
     functor( :resource, Object, Object ) { | app, name | Waves.applications[ app.to_s ].resources[ name.to_s ] }
0
- functor( :resource, Object ) { | app, name | Waves.application.resources[ name.to_s ] }
0
+ functor( :resource, Object ) { | name | Waves.application.resources[ name.to_s ] }
0
     # Raise a "not found" exception.
0
     def not_found; request.not_found; end
0
     # Access the Waves::Logger.

Comments

    No one has commented yet.