class Gem::BasicSpecification

def full_require_paths

def full_require_paths
  @full_require_paths ||=
    begin
      full_paths = raw_require_paths.map do |path|
        File.join full_gem_path, path
      end
      full_paths << extension_dir if have_extensions?
      full_paths
    end
end