In PluginRegistry#activate, we can add gem 'chronicle-NAME' and watch for a Gem::MissingSpecError (or maybe via an #installed? method)
Currently, we're only doing require 'chronicle/NAME' which generates a LoadError if the gem is missing OR if the gem fails while loading. This seems to be the problem in #33.
In
PluginRegistry#activate
, we can addgem 'chronicle-NAME'
and watch for aGem::MissingSpecError
(or maybe via an#installed?
method)Currently, we're only doing
require 'chronicle/NAME'
which generates aLoadError
if the gem is missing OR if the gem fails while loading. This seems to be the problem in #33.