-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Only load "launchy" when it is needed #12
Comments
That makes sense, I'm mostly just developing and using Qwandry these days, On Tue, Mar 29, 2011 at 4:36 PM, rubiety <
|
Is there any ETA on a (literally one line) fix for this issue? It continues to cause me quite a few problems as a result of "guard" having open_gem as a dependency... so anyone using guard extensively is probably running into similar issues. |
Hi, FYI guard no more have open_gem as a dependency in the last versions :) |
Currently lib/rubygems/commands/read_command.rb has this as the first line, which is run as soon as this file is loaded:
require 'launchy'
This is a problem because:
It would be best if this require line was moved somewhere such that launchy was only required at runtime when actually needed.
Gem plugins have to be very careful of what they do outside of the runtime commands.
The text was updated successfully, but these errors were encountered: