mirror of
https://github.com/pyenv/pyenv.git
synced 2026-02-09 12:07:40 +09:00
19 lines
482 B
Ruby
19 lines
482 B
Ruby
|
|
hook = lambda do |installer|
|
||
|
|
begin
|
||
|
|
# Ignore gems that aren't installed in locations that rbenv searches for binstubs
|
||
|
|
if installer.spec.executables.any? &&
|
||
|
|
[Gem.default_bindir, Gem.bindir(Gem.user_dir)].include?(installer.bin_dir)
|
||
|
|
system "rbenv", "rehash"
|
||
|
|
end
|
||
|
|
rescue
|
||
|
|
warn "rbenv: error in gem-rehash (#{$!})"
|
||
|
|
end
|
||
|
|
end
|
||
|
|
|
||
|
|
begin
|
||
|
|
Gem.post_install(&hook)
|
||
|
|
Gem.post_uninstall(&hook)
|
||
|
|
rescue
|
||
|
|
warn "rbenv: error installing gem-rehash hooks (#{$!})"
|
||
|
|
end
|