Ruby short hand for simple if else condition

Viewed 11050

Is there is simpler way to write this ruby code:

if @canonical_url
    @canonical_url
else
    request.original_url
end
2 Answers
Related