Earlier, I asked about autoload in the gmail gem not being able to find the files it wanted to load. In building a minimal script, I found the gmail gem loaded it\'s files when
I had installed the gems with bundler.
To fix the issue with loading both libraries, I installed the gems with the gem command: sudo gem install gmail parse_resource
sudo gem install gmail parse_resource
With this done, I was able to require the libraries in any order, and to connect to gmail and parse without issue.
-Nick