Sha256: f45dc64f9bbd2d11b1d84c88705b66e9b9e93a9ce869e116b9ccfd190b6c6ae5
Contents?: true
Size: 1018 Bytes
Versions: 8
Compression:
Stored size: 1018 Bytes
Contents
# Copyright (c) 2013 AppNeta, Inc. # All rights reserved. module Oboe ## # This module provides a method to manually initialize the # Ruby instrumentation. Normally this is done by detecting # frameworks at load time and inserting initialization hooks. module Ruby class << self def initialize load end ## # The core method to load Ruby instrumentation. Call this # from raw Ruby scripts or in Ruby applications where a # supported framework isn't being used. Supported frameworks # will instead be detected at load time and initialization is # automatic. def load # In case some apps call this manually, make sure # that the gem is fully loaded and not in no-op # mode (e.g. on unsupported platforms etc.) if Oboe.loaded Oboe::Loading.load_access_key Oboe::Inst.load_instrumentation end end end end end if Oboe.loaded and !Oboe.framework? ::Oboe::Ruby.load end
Version data entries
8 entries across 8 versions & 1 rubygems