7e6f6e1603
Enables frozens string for the following: * lib/gitlab/conflict/**/*.rb * lib/gitlab/cross_project_access/**/*.rb * lib/gitlab/cycle_analytics/**/*.rb * lib/gitlab/data_builder/**/*.rb * lib/gitlab/database/**/*.rb * lib/gitlab/dependency_linker/**/*.rb * lib/gitlab/diff/**/*.rb * lib/gitlab/downtime_check/**/*.rb * lib/gitlab/email/**/*.rb * lib/gitlab/etag_caching/**/*.rb Partially addresses gitlab-org/gitlab-ce#47424.
19 lines
424 B
Ruby
19 lines
424 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module DependencyLinker
|
|
class RequirementsTxtLinker < BaseLinker
|
|
self.file_type = :requirements_txt
|
|
|
|
private
|
|
|
|
def link_dependencies
|
|
link_regex(/^(?<name>(?![a-z+]+:)[^#.-][^ ><=~!;\[]+)/) do |name|
|
|
"https://pypi.python.org/pypi/#{name}"
|
|
end
|
|
|
|
link_regex(%r{^(?<name>https?://[^ ]+)}, &:itself)
|
|
end
|
|
end
|
|
end
|
|
end
|