This is a simple Ruby script for assigning secret Santas and emailing everyone their assignment. The basic rule is that nobody can be assigned to give a gift to someone in their own group (including, of course, themselves). In my family, group == household, but it could mean anything you like.
The script uses Dennis Ranke's solution from The Ruby Quiz #2, which gives everyone a correct assignment in a single pass through the list. Nice! :) The only tweaks I made were practical ones, like using config files, and a tiny bit of refactoring, logging, etc, to make it more apparent what's happening.
- Clone the repo
- Copy each of the
.yml.examplefiles inconfig/to a corresponding.ymland customize - Run
ruby secret_santa.rband examine the output - When you're satisfied, set
REALLY_SENDINGtotrueand run it again
- Fill in your own Twilio credentials in the
twilio.ymlconfig file - Change
SENDER_TYPEto:twilio - Set
REALLY_SENDINGtofalseto disable really sending text messages or totrueto really send text messages.
!! Depending on your Twilio account settings, sending text messages may costs money.
None, other than Ruby (I tested on 1.9) and the standard library.
If you want to use Twilio as sender type, you need to install the twilio-ruby gem:
gem install twilio-ruby'
Thanks to Dennis Ranke for a nice solution, and to James Edward Gray II for running The Ruby Quiz.