I have the following code:
url = file.s3_url.blank? ? file.url : file.s3_url
Is there a shorter way to write this?
Thanks!
|
I have the following code:
Is there a shorter way to write this? Thanks! |
||||
|
|
|
Well, you could write a method on whatever
Then it gets real simple:
As @tokland said, you could monkey patch
This way, you'd be able to do this:
Or this:
|
|||||||||||||||||
|
|
Use Object#presence:
|
|||||||||||||
|
|
Maybe, you can do the following:
This code will only use file.url if file.s3_url is nil. That means that an empty string won't work though. If you want to ensure that an empty string is not used, like you do in your example, then there isn't a shorter way to do this. |
|||
|
|
I use a utility method.
I typically just put that in my ApplicationController and make it a helper. If you wanted it to be available globally, you could put it in Kernel, or you could monkey-patch Array
|
|||||
|
|
|
|||
|
|