Module: Datadog::Contrib::Patcher
- Included in:
- ActionCable::Patcher, ActionPack::ActionController::Patcher, ActionPack::Patcher, ActionView::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, Httprb::Patcher, Kafka::Patcher, MongoDB::Patcher, Mysql2::Patcher, Datadog::Contrib::Presto::Patcher, Que::Patcher, Racecar::Patcher, Rack::MiddlewareNamePatcher, Rack::MiddlewarePatcher, Rails::Patcher, Rake::Patcher, Redis::Patcher, Resque::Patcher, RestClient::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
7 8 9 10 11 12 |
# File 'lib/ddtrace/contrib/patcher.rb', line 7 def self.included(base) base.send(:include, Datadog::Patcher) base.singleton_class.send(:prepend, CommonMethods) base.send(:prepend, CommonMethods) if base.class == Class end |