The name of a gem is not the same as the module. Right now I need to require
it and include
in various types of files, such as controllers and models. This is amounting to many require
s which I don't have to do for other gems. It's a gem I can update. Is there a way the gem needs to be configured so it is "attached" to Rails, and if so, where may I find instructions to do this?
UPDATE: using required: "name-of-module" in Gemfile removes need for require
everywhere. Still wondering, if gem could be configured to not require this in Gemfile?