Jonathan Leighton wrote:

> Is there a way to pass each item is a hash as a successive argument  
> to a
> function?
>
> ie:
>
> time = {
>   :year => 2003
>   :month => 03
>   :day => 24
> }
> Time.local(time)
>
> (that wouldn't work but you get the idea)
>
> Cheers
>
> -- 
> Jonathan Leighton
> http://turnipspatch.com/ | http://jonathanleighton.com/ | http:// 
> digital-proof.org/
>
>

Time.local(*time.values.reverse)

-- Daniel