Skip to content
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

'gh browse' checks for launchy & fails if launchy installed, but not through gems #31

Open
huitseeker opened this issue Dec 10, 2010 · 3 comments

Comments

@huitseeker
Copy link

The 'browse' command determines if I have launchy installed in the following fashion:

helper :has_launchy? do |blk|
  begin
    gem 'launchy'
    require 'launchy'
    blk.call
  rescue Gem::LoadError
    STDERR.puts "Sorry, you need to install launchy: `gem install launchy`"
  end  
end

Except that in some cases, I may have installed launchy through other means, such as using a package (e.g. the Debian/Ubuntu policy favors packages over gems, so this will apply when launchy is eventually packaged, or even right now using the most excellent thwarted/gem2deb ). In those cases, commenting
gem 'launchy'
above suffices to get 'gh browse' running.

@drnic
Copy link
Collaborator

drnic commented Jan 31, 2011

We could attempt to load it directly first, without gems, then failover to gems, then show the error?

@huitseeker
Copy link
Author

Yes, along the lines of something defunkt himself mentioned.

@zaidaldossary30
Copy link

تم مسحه ضوئيًا_20181122-1119.pdf

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants
@drnic @huitseeker @zaidaldossary30 and others