Skip to content

Instantly share code, notes, and snippets.

@chsh
Created July 17, 2013 01:07
Show Gist options
  • Save chsh/6016803 to your computer and use it in GitHub Desktop.
Save chsh/6016803 to your computer and use it in GitHub Desktop.
Almost like A || B, but if A is blank, pickup B. ex.) '' || 'A' returns '' ''.present_or 'A' returns 'A'.
class Object
def present_or(value)
return self if self.present?
value
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment