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.
20 lines
475 B
Ruby
20 lines
475 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module DependencyLinker
|
|
class ComposerJsonLinker < PackageJsonLinker
|
|
self.file_type = :composer_json
|
|
|
|
private
|
|
|
|
def link_packages
|
|
link_packages_at_key("require", &method(:package_url))
|
|
link_packages_at_key("require-dev", &method(:package_url))
|
|
end
|
|
|
|
def package_url(name)
|
|
"https://packagist.org/packages/#{name}" if name =~ /\A#{REPO_REGEX}\z/
|
|
end
|
|
end
|
|
end
|
|
end
|