Just curious if there is an easy way to load more than one Gemfile from a Ruby application.
If you\'re (quite sensibly) wondering why I would do such a crazy thing..
I use this in my Gemfile:
if File.exists?('Gemfile.devel') then eval File.read('Gemfile.devel'), nil, 'Gemfile.devel' end
The last argument to eval makes exceptions in Gemfile.devel show up with the correct filename.