Sha256: afae8f88c133582ac08a398c7c00824e52e28dc9d1a860668f995185274391ae
Contents?: true
Size: 1.2 KB
Versions: 1
Compression:
Stored size: 1.2 KB
Contents
# coding: 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-filter-geoip" spec.version = "0.5.3" spec.authors = ["Minoru Osuka"] spec.email = ["minoru.osuka@gmail.com"] spec.summary = "Fluent filter plugin for adding GeoIP data to record." spec.description = "Fluent filter plugin for adding GeoIP data to record. Supports the new Maxmind v2 database formats." spec.homepage = "https://github.com/mosuka/fluent-plugin-filter-geoip" spec.license = "Apache-2.0" spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_runtime_dependency 'fluentd', '~> 0.12.32' spec.add_runtime_dependency 'maxminddb', '~> 0.1.11' spec.add_development_dependency 'bundler', '~> 1.14.6' spec.add_development_dependency 'rake', '~> 11.1.2' spec.add_development_dependency 'test-unit', '~> 3.1.5' spec.add_development_dependency 'minitest', '~> 5.8.3' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fluent-plugin-filter-geoip-0.5.3 | fluent-plugin-filter-geoip.gemspec |