Sha256: b394196edb5dafe5c38177d13fd387e80e4c9457431fdb05fe95d0f34c2f3f07
Contents?: true
Size: 717 Bytes
Versions: 6
Compression:
Stored size: 717 Bytes
Contents
# frozen_string_literal: true require_relative "../integration" require_relative "patcher" module Datadog module CI module Contrib module Ciqueue # ci-queue test runner instrumentation # https://github.com/Shopify/ci-queue class Integration < Contrib::Integration MINIMUM_VERSION = Gem::Version.new("0.9.0") def version Gem.loaded_specs["ci-queue"]&.version end def loaded? !defined?(::RSpec::Queue::Runner).nil? end def compatible? super && version >= MINIMUM_VERSION end def patcher Patcher end end end end end end
Version data entries
6 entries across 6 versions & 1 rubygems