Sha256: 45e2d2b9e940ded794310a8c1eada253fad9c246d81ef6b6ac395615fc2d8960
Contents?: true
Size: 958 Bytes
Versions: 3
Compression:
Stored size: 958 Bytes
Contents
# frozen_string_literal: true require_relative '../../../../tracing/contrib/configuration/settings' require_relative '../ext' module Datadog module CI module Contrib module RSpec module Configuration # Custom settings for the RSpec integration # TODO: mark as `@public_api` when GA class Settings < Datadog::Tracing::Contrib::Configuration::Settings option :enabled do |o| o.type :bool o.env Ext::ENV_ENABLED o.default true end option :service_name do |o| o.type :string o.default { Datadog.configuration.service_without_fallback || Ext::SERVICE_NAME } end option :operation_name do |o| o.type :string o.env Ext::ENV_OPERATION_NAME o.default Ext::OPERATION_NAME end end end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems