class Bundler::StubSpecification

def missing_extensions?

This is defined directly to avoid having to loading the full spec
def missing_extensions?
  return false if default_gem?
  return false if extensions.empty?
  return false if File.exist? gem_build_complete_path
  return false if manually_installed?
  true
end