Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
skylight / lib / skylight / normalizers / active_support / cache_write.rb
Size: Mime:
module Skylight
  module Normalizers
    module ActiveSupport
      class CacheWrite < Cache
        register "cache_write.active_support"

        CAT = "app.cache.write".freeze
        TITLE = "cache write"

        def normalize(trace, name, payload)
          [ CAT, TITLE, nil, payload ]
        end
      end
    end
  end
end