debian-mirror-gitlab/lib/gitlab/ci/build/policy.rb
2019-12-21 20:55:43 +05:30

18 lines
340 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, false).new(value)
end
specifications.compact
end
end
end
end
end