method
dylibs_ldd
v2_6_3 -
Show latest stable
- Class:
Bundler::CLI::Doctor
dylibs_ldd(path)public
No documentation available.
# File lib/bundler/cli/doctor.rb, line 31
def dylibs_ldd(path)
output = `/usr/bin/ldd "#{path}"`.chomp
output.split("\n").map do |l|
match = l.match(LDD_REGEX)
next if match.nil?
match.captures[0]
end.compact
end