ruby-debug / ruby-debug-ide

An interface which glues ruby-debug to IDEs like Eclipse (RDT), NetBeans and RubyMine.
https://www.jetbrains.com/ruby/features/ruby_debugger.html
Other
370 stars 83 forks source link

Hardcoded dbase dependency restricst installation #187

Closed MarkBlaas closed 4 years ago

MarkBlaas commented 4 years ago

The hardcoded dbasd dependency in ext/mkrf_conf.rb significantly restricts installation options. For instance, in my (Windows) environment dbase is installed to a different path with gem install --install-dir The installation cannot find the gem (eventhough it is on %GEM_PATH%), causing it to download but worse, the --http-proxy option is “ignored” by this check causing the installation to fail if you are behind a proxy. I’ve removed the dependency and correctly installed in my environment (no network access, gems installed in different folder) suggestion is to put this dependency in the gemspec (have not checked impact of this change)

MarkBlaas commented 4 years ago

This was fixed in #142