Sha256: bd020a3e5b4dc430f7560d9af1b7e3a04823c2496911942ff568635d076dc5a6
Contents?: true
Size: 1.19 KB
Versions: 1
Compression:
Stored size: 1.19 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.1" 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.14.6' spec.add_runtime_dependency 'maxminddb', '~> 0.1.11' spec.add_development_dependency 'bundler', '~> 1.13.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.1 | fluent-plugin-filter-geoip.gemspec |