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_increment.rb
Size: Mime:
module Skylight
  module Normalizers
    module ActiveSupport
      class CacheIncrement < Cache
        register "cache_increment.active_support"

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

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