class Datadog::Tracing::Contrib::Stripe::Integration

Description of Stripe integration

def self.compatible?

def self.compatible?
  super && version >= MINIMUM_VERSION
end

def self.loaded?

def self.loaded?
  !defined?(::Stripe).nil?
end

def self.version

def self.version
  Gem.loaded_specs['stripe'] && Gem.loaded_specs['stripe'].version
end

def new_configuration

def new_configuration
  Configuration::Settings.new
end

def patcher

def patcher
  Patcher
end