[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Optionally pass a parameter?

Peter Alvin

9/23/2008 11:50:00 AM

In general, how do you optionally pass an optional qualifier to a Ruby
def?

For example, for some model in Rails, like this:

MyDBClass.find(:all, ...

How do I optionally add a condition? This generates a syntax error:

some_test ? :conditions => "id=100" : nil,

I guess it doesn't like that I only want to add the :conditions
occasionally. What is the Ruby best practice or idiom for this?

Pete
--
Posted via http://www.ruby-....

1 Answer

James Coglan

9/23/2008 11:57:00 AM

0

[Note: parts of this message were removed to make it a legal post.]

>
> some_test ? :conditions => "id=100" : nil


Try turning it inside out:

:conditions => (some_test ? "id=100" : nil)

or:

:conditions => (some_test && "id=100")

Not too sure about what the second one will cause Rails to do if some_test
is false rather than nil, but worth a try.