Skip to content

Instantly share code, notes, and snippets.

@jcarouth
Created October 13, 2014 15:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jcarouth/65f94d956324bba9a30c to your computer and use it in GitHub Desktop.
Save jcarouth/65f94d956324bba9a30c to your computer and use it in GitHub Desktop.
some_object = nil
puts 'some_object is not set' if !some_object
# is equivalent to
puts 'some_object is not set' unless some_object
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment