-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathfluent-plugin-redis.gemspec
More file actions
26 lines (23 loc) · 1.08 KB
/
fluent-plugin-redis.gemspec
File metadata and controls
26 lines (23 loc) · 1.08 KB
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-redis"
s.version = "0.3.5"
s.platform = Gem::Platform::RUBY
s.authors = ["Yuki Nishijima", "Hiroshi Hatake", "Kenji Okimoto"]
s.date = %q{2019-02-26}
s.email = ["mail@yukinishijima.net", "fluent@clear-code.com"]
s.homepage = "https://github.com/fluent-plugins-nursery/fluent-plugin-redis"
s.summary = "Redis output plugin for Fluent"
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.add_dependency %q<fluentd>, [">= 0.14.22", "< 2"]
s.add_dependency %q<redis>, ["~> 3.3.0"]
s.add_development_dependency %q<rake>, [">= 11.3.0"]
s.add_development_dependency %q<bundler>
s.add_development_dependency %q<test-unit>, ["~> 3.3.9"]
s.add_development_dependency %q<appraisal>, ["~> 2.1.0"]
s.add_development_dependency %q<webrick>
end