<%if @item.rigged %>Yes<%else%>No<%end%>
I was thinking of something like this?
if @item.rigged ? "Yes" : "No"
But it dosen't work. Ruby has the ||= but I"m not even sure how to use that thing.
I was thinking of something like this?
But it dosen't work. Ruby has the ||= but I"m not even sure how to use that thing. |
|||
|
|
|
Remove Ternary operator has form |
|||
|
In Ruby, the condition and the So, all of these would work:
There is also a conditional operator in Ruby, but that is completely unnecessary. The conditional operator is needed in C, because it is an operator: in C, In Ruby, however, BTW: it is customary to name methods which are used to ask a question with a question mark at the end, like this:
This shows another problem with using the conditional operator in Ruby:
It's simply hard to read with the multiple question marks that close to each other. |
|||
|
|
|
One line if: statement if condition Your case: "Yes" if @item.rigged "No" if !@item.rigged |
|||
|
|