Sha256: 68020199e45db35ca41087e99572e1b5b8e6c1948cbf27b9ce4b687463aaa096
Contents?: true
Size: 1.12 KB
Versions: 10
Compression:
Stored size: 1.12 KB
Contents
require_relative '../../../tracing/contrib/integration' require_relative 'configuration/settings' require_relative 'patcher' module Datadog module CI module Contrib module RSpec # Description of RSpec integration class Integration include Datadog::Tracing::Contrib::Integration MINIMUM_VERSION = Gem::Version.new('3.0.0') register_as :rspec, auto_patch: true def self.version Gem.loaded_specs['rspec-core'] \ && Gem.loaded_specs['rspec-core'].version end def self.loaded? !defined?(::RSpec).nil? && !defined?(::RSpec::Core).nil? && \ !defined?(::RSpec::Core::Example).nil? end def self.compatible? super && version >= MINIMUM_VERSION end # test environments should not auto instrument test libraries def auto_instrument? false end def new_configuration Configuration::Settings.new end def patcher Patcher end end end end end end
Version data entries
10 entries across 10 versions & 1 rubygems