Skip to content

Instantly share code, notes, and snippets.

@markgarrigan
Created May 21, 2012 16:42
Show Gist options
  • Save markgarrigan/2763205 to your computer and use it in GitHub Desktop.
Save markgarrigan/2763205 to your computer and use it in GitHub Desktop.
Ruby blank? and present?
class Object
def blank?
respond_to?(:empty?) ? empty? : !self
end
def present?
!blank?
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment