Sha256: 460536034bdfdfeac5e555aecdf405fe32309a16158c8f96cc3559018e3f716e
Contents?: true
Size: 582 Bytes
Versions: 19
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/datadog_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
19 entries across 19 versions & 2 rubygems