-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathfluent-plugin-ua-parser.gemspec
26 lines (23 loc) · 1.05 KB
/
fluent-plugin-ua-parser.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# 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-ua-parser"
spec.version = "1.2.0"
spec.authors = ["Yuri Umezaki"]
spec.email = ["[email protected]"]
spec.homepage = "https://github.com/bungoume/fluent-plugin-ua-parser"
spec.summary = "Fluentd filter plugin to parse user-agent"
spec.description = spec.summary
spec.license = "Apache-2.0"
spec.files = `git ls-files -z`.split("\x0")
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_runtime_dependency "fluentd", [">= 0.14", "< 2"]
spec.add_runtime_dependency "user_agent_parser", ">= 2.2.0"
spec.add_runtime_dependency "lru_redux", ">= 1.0.0"
spec.add_development_dependency "bundler"
spec.add_development_dependency "rake"
spec.add_development_dependency "test-unit"
end