if params[:parent_type] == "Order"
parent_id = nil
else
parent_id = params[:parent_id]
end
Would a Ruby person laugh at me for writing it this way? It doesn't seem particularly concise like some Ruby code I've seen.
|
1
|
|
|
|
|
|
That looks perfectly reasonable to me. You could move the assignment in front of the if ( If parent_id is nil or undefined before that line you can simply write:
|
||
|
|
|
Nothing really wrong with it as-is, but can be made more concise:
Alternatively:
|
||||||||
|
|
|
I think it's fine the way it is. I'm a Ruby person, and I wouldn't laugh at you for writing it that way. It's clear what the code does and there's no real code duplication, so I wouldn't worry about it. |
||
|
|
|
I like: parent_id = (params[:parent_type] == "Order" ? nil : params[:parent_id]) |
||
|
|
|
|
One more variation:
|
||
|