Sha256: f942d59556df9a0f2fda66e1405eb59e441a345fcff30491e17b49d61d3c2e71

Contents?: true

Size: 482 Bytes

Versions: 2

Compression:

Stored size: 482 Bytes

Contents

# typed: true
module Datadog
  module Profiling
    # This module contains classes and methods which are implemented using native code in the
    # ext/ddtrace_profiling_native_extension folder
    module NativeExtension
      private_class_method def self.working?
        native_working?
      end

      unless singleton_class.private_method_defined?(:native_working?)
        private_class_method def self.native_working?
          false
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ddtrace-0.53.0 lib/ddtrace/profiling/native_extension.rb
ddtrace-0.52.0 lib/ddtrace/profiling/native_extension.rb