06892e88f5
Enables frozen string for the following: * lib/gitlab/ci/*.rb * lib/gitlab/ci/build/**/*.rb * lib/gitlab/ci/config/**/*.rb * lib/gitlab/ci/pipeline/**/*.rb * lib/gitlab/ci/reports/**/*.rb Partially addresses #47424.
16 lines
360 B
Ruby
16 lines
360 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module Ci::MaskSecret
|
|
class << self
|
|
def mask!(value, token)
|
|
return value unless value.present? && token.present?
|
|
|
|
# We assume 'value' must be mutable, given
|
|
# that frozen string is enabled.
|
|
value.gsub!(token, 'x' * token.length)
|
|
value
|
|
end
|
|
end
|
|
end
|
|
end
|