Module: Datadog::Contrib::Patcher
- Included in:
- 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, MongoDB::Patcher, Mysql2::Patcher, Racecar::Patcher, Rack::Patcher, Rails::Patcher, Rake::Patcher, Redis::Patcher, Resque::Patcher, RestClient::Patcher, Sequel::Patcher, Shoryuken::Patcher, Sidekiq::Patcher, Sinatra::Patcher, SuckerPunch::Patcher
- Defined in:
- lib/ddtrace/contrib/patcher.rb
Overview
Common behavior for patcher modules
Defined Under Namespace
Modules: ClassMethods, InstanceMethods
Class Method Summary collapse
Class Method Details
.included(base) ⇒ Object
7 8 9 10 11 |
# File 'lib/ddtrace/contrib/patcher.rb', line 7 def self.included(base) base.send(:include, Datadog::Patcher) base.send(:extend, InstanceMethods) base.send(:include, InstanceMethods) end |