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.
17 lines
333 B
Ruby
17 lines
333 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module Ci
|
|
module Build
|
|
module Policy
|
|
def self.fabricate(specs)
|
|
specifications = specs.to_h.map do |spec, value|
|
|
self.const_get(spec.to_s.camelize).new(value)
|
|
end
|
|
|
|
specifications.compact
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|