class Bundler::EndpointSpecification

def require_paths

after the gem is installed
needed for standalone, load required_paths from local gemspec
def require_paths
  if @remote_specification
    @remote_specification.require_paths
  elsif _local_specification
    _local_specification.require_paths
  else
    super
  end
end