-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfluent-plugin-debug.gemspec
27 lines (24 loc) · 1023 Bytes
/
fluent-plugin-debug.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
27
# encoding: utf-8
$:.push File.expand_path('../lib', __FILE__)
Gem::Specification.new do |gem|
gem.name = "fluent-plugin-debug"
gem.version = "0.0.3"
gem.authors = ["Naotoshi Seo"]
gem.email = "sonots@gmail.com"
gem.homepage = "https://github.com/sonots/fluent-plugin-debug"
gem.description = "Fluentd plugin to investigate incoming messages in a short-hand"
gem.summary = gem.description
gem.licenses = ["MIT"]
gem.has_rdoc = false
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.require_paths = ['lib']
gem.add_dependency "fluentd", "~> 0.10.0"
gem.add_development_dependency "rake"
gem.add_development_dependency "rspec"
gem.add_development_dependency "rspec-its"
gem.add_development_dependency "pry"
gem.add_development_dependency "pry-nav"
gem.add_development_dependency "test-unit"
end