When Rails loads, does it load all the gems that are installed on the system? I\'ve got 47 gems installed on the server, including all the various Rails gems which have mult
Rails loads all installed plugins in the application but never the gems unless its explicitly mentioned (using require) in the application
No, just those that you require or are required by Rails.