Full paths in the gem to add to $LOAD_PATH when this gem is activated.
# File lib/rubygems/basic_specification.rb, line 138
def full_require_paths
@full_require_paths ||=
begin
full_paths = raw_require_paths.map do |path|
File.join full_gem_path, path.untaint
end
full_paths << extension_dir if have_extensions?
full_paths
end
end