Sha256: 20ee7662ab63de2ca4d9a7ee4aaddf8ac02a13d534980d1fd392f97cfcf2d7e2
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.2.2" 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.19' spec.add_runtime_dependency 'maxminddb', '~> 0.1.8' spec.add_development_dependency 'bundler', '~> 1.11.2' spec.add_development_dependency 'rake', '~> 10.4.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.2.2 | fluent-plugin-filter-geoip.gemspec |