Skip to content

Instantly share code, notes, and snippets.

/test.rb Secret

Created January 27, 2016 16:43
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 anonymous/bbe498583eadb98882a2 to your computer and use it in GitHub Desktop.
Save anonymous/bbe498583eadb98882a2 to your computer and use it in GitHub Desktop.
Default value
irb(main):001:0> projects = []
=> []
irb(main):002:0> projects = ["atm"]
=> ["atm"]
irb(main):003:0> p projects
["atm"]
=> ["atm"]
irb(main):004:0> value = [""] || projects
=> [""]
irb(main):005:0>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment