Sha256: 5c18769c6786ff50ff94ee07ec71f99b9f42cb8d7bbdbaa0890f973ee9038f65

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.0.5"
  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/assemblyline/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", "~> 10.4"
  spec.add_development_dependency "test-unit", "~> 2.5"
  spec.add_development_dependency "reevoocop"

  spec.add_runtime_dependency "fluentd", "~> 0.12"
  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.0.5 fluent-plugin-systemd.gemspec