From: "Jesús Gabriel y Galán" Date: 2011-08-11T00:44:22+09:00 Subject: Re: Passing multiple parameters --000e0cd14a70bb6e8304aa288d04 Content-Type: text/plain; charset=ISO-8859-1 > Another option is to pass either >an object in, or a Hash. I'd >recommend this path if the data >you're dealing with relates to >each other (which it looks like it >does). +1 Read about a code smell named Primitive Obsession. If the set of params are part of a higher level concept of your program, such as UserContact or something similar, you should create an object for that. It can be a full fledged class or a struct, for example. Jesus. --000e0cd14a70bb6e8304aa288d04--