-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathfluent-plugin-map.gemspec
26 lines (22 loc) · 1.19 KB
/
fluent-plugin-map.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
Gem::Specification.new do |s|
s.name = "fluent-plugin-map"
s.version = "0.3.0"
s.authors = ["Kohei Tomita", "Hiroshi Hatake", "Kenji Okomoto"]
s.homepage = "https://github.com/fluent-plugins-nursery/fluent-plugin-map"
s.summary = %q{fluent-plugin-map is the non-buffered plugin that can convert an event log to different event log(s). }
s.description = %q{fluent-plugin-map is the non-buffered plugin that can convert an event log to different event log(s). }
s.rubyforge_project = "fluent-plugin-map"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.license = "Apache-2.0"
s.add_development_dependency "rake"
s.add_development_dependency "fluentd", [">= 1.7.0", "< 2"]
s.add_development_dependency "test-unit", "~> 3.1"
s.add_development_dependency "appraisal"
s.add_development_dependency "webrick"
end