Sha256: 10da85970b4df3b552949a04d281beb3a28c544e33192648d54e31b39dcba444
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 = "1.0.0" 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.0', '< 2'] spec.add_runtime_dependency 'maxminddb', '~> 0.1.11' spec.add_development_dependency 'bundler', '~> 1.14' 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-1.0.0 | fluent-plugin-filter-geoip.gemspec |