Class: Appsignal::Hooks::ShoryukenHook Private
- Defined in:
 - lib/appsignal/hooks/shoryuken.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.
      73 74 75  | 
    
      # File 'lib/appsignal/hooks/shoryuken.rb', line 73 def dependencies_present? defined?(::Shoryuken) 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.
      77 78 79 80 81 82 83  | 
    
      # File 'lib/appsignal/hooks/shoryuken.rb', line 77 def install ::Shoryuken.configure_server do |config| config.server_middleware do |chain| chain.add Appsignal::Hooks::ShoryukenMiddleware end end end  |