Sha256: bdc67dba99060f1618c49aecb528c44a0c703d41b3427cbc0309f341c7ffb989
Contents?: true
Size: 516 Bytes
Versions: 70
Compression:
Stored size: 516 Bytes
Contents
# frozen_string_literal: true module Appsignal class Hooks # @api private class ShoryukenHook < Appsignal::Hooks::Hook register :shoryuken def dependencies_present? defined?(::Shoryuken) end def install require "appsignal/integrations/shoryuken" ::Shoryuken.configure_server do |config| config.server_middleware do |chain| chain.add Appsignal::Integrations::ShoryukenMiddleware end end end end end end
Version data entries
70 entries across 70 versions & 1 rubygems