reachlocal/boxci

View on GitHub
lib/boxci/config_permutation_component_factory.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Boxci
  module ConfigPermutationComponentFactory
    def self.build(key, val)
      Boxci::ConfigPermutationComponents.const_get(key.capitalize).new(val)
    end
  end
end