debian-mirror-gitlab/lib/gitlab/ci/mask_secret.rb

17 lines
360 B
Ruby
Raw Normal View History

2018-12-13 13:39:08 +05:30
# frozen_string_literal: true
2018-03-17 18:26:18 +05:30
module Gitlab
module Ci::MaskSecret
class << self
def mask!(value, token)
return value unless value.present? && token.present?
2018-12-13 13:39:08 +05:30
# We assume 'value' must be mutable, given
# that frozen string is enabled.
2018-03-17 18:26:18 +05:30
value.gsub!(token, 'x' * token.length)
value
end
end
end
end