-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathfluent-plugin-woothee.gemspec
More file actions
22 lines (19 loc) · 1012 Bytes
/
fluent-plugin-woothee.gemspec
File metadata and controls
22 lines (19 loc) · 1012 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- encoding: utf-8 -*-
Gem::Specification.new do |gem|
gem.name = "fluent-plugin-woothee"
gem.version = "1.0.0"
gem.authors = ["TAGOMORI Satoshi"]
gem.email = ["tagomoris@gmail.com"]
gem.description = %q{parsing by Project Woothee. See https://github.com/woothee/woothee }
gem.summary = %q{Fluentd plugin to parse UserAgent strings with woothee parser. It adds device information or filter records with specific device types.}
gem.homepage = "https://github.com/woothee/fluent-plugin-woothee"
gem.license = "Apache-2.0"
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.add_development_dependency "rake"
gem.add_development_dependency "test-unit", "~> 3.0.2"
gem.add_runtime_dependency "fluentd", ">= 0.14.0"
gem.add_runtime_dependency "woothee", ">= 1.0.0"
end