I'm trying to pass a nest of parameters to a rails function defined as so...
def test(*params)
stuff
end
If I pass the following
test :mark, :was, :here
or
test :mark, :was, :here=>:today
everything is fine. However, when I do this...
test :mark, :was=>:really, :here
An error is thrown. Any clues where I'm going wrong?
M.