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.
26 lines
665 B
Ruby
26 lines
665 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module DependencyLinker
|
|
class PodspecLinker < MethodLinker
|
|
include Cocoapods
|
|
|
|
STRING_REGEX = /['"](?<name>[^'"]+)['"]/.freeze
|
|
|
|
self.file_type = :podspec
|
|
|
|
private
|
|
|
|
def link_dependencies
|
|
link_method_call('homepage', URL_REGEX, &:itself)
|
|
|
|
link_regex(/(git:|:git\s*=>)\s*['"](?<name>#{URL_REGEX})['"]/, &:itself)
|
|
|
|
link_method_call('license', &method(:license_url))
|
|
link_regex(/license\s*=\s*\{\s*(type:|:type\s*=>)\s*#{STRING_REGEX}/, &method(:license_url))
|
|
|
|
link_method_call(%w[name dependency], &method(:package_url))
|
|
end
|
|
end
|
|
end
|
|
end
|