The question I\'m really asking is why require does not take the name of the gem. Also, In the case that it doesn\'t, what\'s the easiest way to find the secret incantation
There is no standard for what the file you need to include is. However there are some commonly followed conventions that you can can follow try and make use of:
require mygem
will work. #{gemname}/lib for .rb files, and
if there is only one, its a pretty
good bet that is the one to requireIf all of that works, then all you can do is look into the gem's directory (which you can find by running gem environment | grep INSTALLATION | awk '{print $4}' and looking in the lib directory, You will probably need to read the files and hope there is a comment explaining what to do