Sha256: 1cb3e04934264c795405f6dcf8627e21054f91d60868bf7fd5bae12ed27fb9ae
Contents?: true
Size: 582 Bytes
Versions: 8
Compression:
Stored size: 582 Bytes
Contents
# frozen_string_literal: 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, as well as some Ruby-level utilities that don't make sense to # write using C 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
8 entries across 8 versions & 1 rubygems