-
Notifications
You must be signed in to change notification settings - Fork 83
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
Install dependencies into the same root as debugger itself #172
Conversation
Helps with --user-install on system ruby
@@ -1,3 +1,4 @@ | |||
install_dir = File.expand_path("../../../..", __FILE__) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What should ../../../..
denote?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It would be great to add this as a comment for the further maintainers :)
ext/mkrf_conf.rb
Outdated
@@ -27,11 +28,11 @@ def already_installed(dep) | |||
|
|||
begin | |||
puts "Installing base gem" | |||
inst = Gem::DependencyInstaller.new :prerelease => dep.prerelease? | |||
inst = Gem::DependencyInstaller.new :prerelease => dep.prerelease?, :install_dir => install_dir |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since we're here, could you please align code style in lines you've changed? One uses parentheses, while the other does not
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure, just it looks weird so I think it's better to fix such inconsistencies
Thank you! Merged. |
…g#172) * Install dependencies into the same root as debugger itself Helps with --user-install on system ruby
Helps with
--user-install
on system rubyhttps://youtrack.jetbrains.com/issue/RUBY-20930