This should help with instances where libraries are required before their extensions resulting in the extensions never getting loaded.
We attempt to load our extensions when we require 'amazing_print' and then twice more during the first instantiations of Inspector which should hopefully be after the rest of any libraries are required by Bundler or other means.
Fixes #107
This should help with instances where libraries are required before their extensions resulting in the extensions never getting loaded.
We attempt to load our extensions when we
require 'amazing_print'
and then twice more during the first instantiations ofInspector
which should hopefully be after the rest of any libraries are required by Bundler or other means.