Sha256: a8239fa8f28657d9d309ab555a22e2a123a7e3e8f6d8d6e7dcd3fa5d1508df6e

Contents?: true

Size: 1.01 KB

Versions: 1

Compression:

Stored size: 1.01 KB

Contents

# -*- encoding: utf-8 -*-

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

Gem::Specification.new do |spec|
  spec.name          = "fluent-plugin-systemd"
  spec.version       = "0.1.1.pre2"
  spec.authors       = ["Ed Robinson"]
  spec.email         = ["ed@reevoo.com"]

  spec.summary       = "Input plugin to read from systemd journal."
  spec.description   = "This is a fluentd input plugin. It reads logs from the systemd journal."
  spec.homepage      = "https://github.com/reevoo/fluent-plugin-systemd"
  spec.license       = "MIT"


  spec.files         = Dir["**/**"].reject { |f| f.match(/^(test|spec|features)\//) }
  spec.require_paths = ["lib"]

  spec.add_development_dependency "bundler", "~> 1.10"
  spec.add_development_dependency "rake"
  spec.add_development_dependency "test-unit", "~> 2.5"
  spec.add_development_dependency "reevoocop"

  spec.add_runtime_dependency "fluentd", [">= 0.14.11", "< 2"]
  spec.add_runtime_dependency "systemd-journal", "~> 1.2"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
fluent-plugin-systemd-0.1.1.pre2 fluent-plugin-systemd.gemspec