How to get rid of multiple psych.bundle: warnings

I was getting a never-ending parade of these warnings launching Rails and just about everything else:

/psych.bundle: warning: already initialized constant ANY

The solution is to install the latest psych gem system-wide, that is, outside of any gemsets you may have. You probably want to also make sure you don't have any old versions of psych.

gem use 1.9.3
    gem uninstall psych
    gem install psych