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
Bug fix associated with integrating controller params logic with 
ResponseMixin.
dyoder (author)
Mon Aug 25 10:06:21 -0700 2008
automatthew (committer)
Tue Aug 26 06:35:37 -0700 2008
commit  e326686bc08410c3eee9b65c23b6d7daf6da95e5
tree    cd3a5c6c638dd877a8bbf3c9fc394c50214a70da
parent  7e64511577abbfd9a1d4c2ab2fedcbaef3d5c9ef
...
66
67
68
69
 
70
71
72
...
66
67
68
 
69
70
71
72
0
@@ -66,7 +66,7 @@ module Waves
0
       functor( :match, Hash, Symbol, String, nil ) do | r, key, want, got |
0
         r[ key.to_s ] = want
0
       end
0
- functor( :match, Hash, Symbol, true, String ) do | r, key, want, got |
0
+ functor( :match, Hash, Symbol, true, Object ) do | r, key, want, got |
0
         r[ key.to_s ] ||= []; r[ key.to_s ] << got
0
       end
0
       functor( :match, Hash, Symbol, Regexp, String ) do | r, key, want, got |
...
79
80
81
82
 
83
84
85
...
79
80
81
 
82
83
84
85
0
@@ -79,7 +79,7 @@ module Waves
0
         destructured[keys.first.intern] = case val
0
         when String
0
           val.strip
0
- when Hash
0
+ when Hash, Array
0
           val
0
         when nil
0
           raise key.inspect

Comments

    No one has commented yet.