Sha256: c3b04bef366b1dda2aa98df618ba55d0d702494423ffbaf9ad37566de622cd46
Contents?: true
Size: 902 Bytes
Versions: 4
Compression:
Stored size: 902 Bytes
Contents
# frozen_string_literal: true require_relative "../ext" require_relative "../../settings" 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::CI::Contrib::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
4 entries across 4 versions & 1 rubygems