method
dylibs
v2_6_3 -
Show latest stable
- Class:
Bundler::CLI::Doctor
dylibs(path)public
No documentation available.
# File lib/bundler/cli/doctor.rb, line 40
def dylibs(path)
case RbConfig::CONFIG["host_os"]
when /darwin/
return [] unless otool_available?
dylibs_darwin(path)
when /(linux|solaris|bsd)/
return [] unless ldd_available?
dylibs_ldd(path)
else # Windows, etc.
Bundler.ui.warn("Dynamic library check not supported on this platform.")
[]
end
end