Class: Appsignal::Hooks::DelayedJobHook Private
- Defined in:
- lib/appsignal/hooks/delayed_job.rb
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Instance Method Summary collapse
- #dependencies_present? ⇒ Boolean private
- #install ⇒ Object private
Methods inherited from Hook
#initialize, #installed?, register, #try_to_install
Constructor Details
This class inherits a constructor from Appsignal::Hooks::Hook
Instance Method Details
#dependencies_present? ⇒ Boolean
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
9 10 11 |
# File 'lib/appsignal/hooks/delayed_job.rb', line 9 def dependencies_present? defined?(::Delayed::Plugin) end |
#install ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
13 14 15 16 17 18 |
# File 'lib/appsignal/hooks/delayed_job.rb', line 13 def install # The DJ plugin is a subclass of Delayed::Plugin, so we can only # require this code if we're actually installing. require "appsignal/integrations/delayed_job_plugin" ::Delayed::Worker.plugins << Appsignal::Hooks::DelayedJobPlugin end |