Sha256: ef50c3050f499a108027dffab447b8e82c0253789366580fe01d35096e93dc94
Contents?: true
Size: 515 Bytes
Versions: 24
Compression:
Stored size: 515 Bytes
Contents
require 'ddtrace/configuration/resolver' module Datadog module Contrib module Configuration # Represents a set of configuration option definitions for an integration class OptionDefinitionSet < Hash def dependency_order Datadog::Configuration::Resolver.new(dependency_graph).call end def dependency_graph each_with_object({}) do |(name, option), graph| graph[name] = option.depends_on end end end end end end
Version data entries
24 entries across 24 versions & 1 rubygems