Sha256: bdb637b7a903a2108e98b2e2959c45664508aed722f2399c36727418ffe05090

Contents?: true

Size: 1.41 KB

Versions: 1

Compression:

Stored size: 1.41 KB

Contents

lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)

Gem::Specification.new do |spec|
  spec.name    = "gitlab-fluent-plugin-redis-slowlog"
  spec.version = "0.0.1.pre" # `git describe --tags`.chomp.gsub(/^v/, "")
  spec.metadata = { "source_code_uri" => "https://gitlab.com/gitlab-org/fluent-plugin-redis-slowlog" }
  spec.authors = ["Bob Van Landuyt"]
  spec.email   = ["bob@gitlab.com"]

  spec.required_ruby_version = ">= 2.6"

  spec.summary       = "Emit redis slowlog entries into fluentd"
  spec.homepage      = "http://gitlab.com/gitlab-org/gitlab-fluent-plugin-redis-slowlog"
  spec.license       = "MIT"

  test_files, files  = `git ls-files -z`.split("\x0").partition do |f|
    f.match(%r{^(test|spec|features)/})
  end
  spec.files         = files
  spec.executables   = files.grep(%r{^bin/}) { |f| File.basename(f) }
  spec.test_files    = test_files
  spec.require_paths = ["lib"]

  spec.add_development_dependency "bundler", "~> 2.1.4"
  spec.add_development_dependency "gitlab-styles", "~> 3.2.0"
  spec.add_development_dependency "pry", "~> 0.12.2"
  spec.add_development_dependency "rake", "~> 12.0"
  spec.add_development_dependency "rspec", "~> 3.9.0"
  # required for the fluent test helpers
  spec.add_development_dependency "test-unit", "~> 3.2.9"

  spec.add_runtime_dependency "fluentd", [">= 0.14.10", "< 2"]
  spec.add_runtime_dependency "redis", [">= 4.1.3", "< 5"]
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
gitlab-fluent-plugin-redis-slowlog-0.0.1.pre gitlab-fluent-plugin-redis-slowlog.gemspec