Module: Datadog::Contrib::Patcher
- Included in:
- Datadog::CI::Contrib::Cucumber::Patcher, Datadog::CI::Contrib::RSpec::Patcher, ActionCable::Patcher, ActionMailer::Patcher, ActionPack::ActionController::Patcher, ActionPack::Patcher, ActionView::Patcher, ActiveJob::Patcher, ActiveModelSerializers::Patcher, ActiveRecord::Patcher, ActiveSupport::Cache::Patcher, ActiveSupport::Patcher, Aws::Patcher, ConcurrentRuby::Patcher, Dalli::Patcher, DelayedJob::Patcher, Elasticsearch::Patcher, Ethon::Patcher, Excon::Patcher, Faraday::Patcher, GRPC::Patcher, Grape::Patcher, GraphQL::Patcher, HTTP::Patcher, Httpclient::Patcher, Httprb::Patcher, Kafka::Patcher, Lograge::Patcher, MongoDB::Patcher, Mysql2::Patcher, Datadog::Contrib::Presto::Patcher, Qless::Patcher, Que::Patcher, Racecar::Patcher, Rack::MiddlewareNamePatcher, Rack::MiddlewarePatcher, Rails::Patcher, Rake::Patcher, Redis::Patcher, Resque::Patcher, RestClient::Patcher, SemanticLogger::Patcher, Sequel::Patcher, Shoryuken::Patcher, Sidekiq::Patcher, Sinatra::Patcher, Sneakers::Patcher, SuckerPunch::Patcher
- Defined in:
- lib/ddtrace/contrib/patcher.rb
Overview
Common behavior for patcher modules
Defined Under Namespace
Modules: CommonMethods
Class Method Summary collapse
Class Method Details
.included(base) ⇒ Object
8 9 10 11 |
# File 'lib/ddtrace/contrib/patcher.rb', line 8 def self.included(base) base.singleton_class.prepend(CommonMethods) base.prepend(CommonMethods) if base.instance_of?(Class) end |