-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathfluent-plugin-grep.gemspec
More file actions
27 lines (23 loc) · 961 Bytes
/
fluent-plugin-grep.gemspec
File metadata and controls
27 lines (23 loc) · 961 Bytes
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 |s|
s.name = "fluent-plugin-grep"
s.version = "0.3.4"
s.authors = ["Naotoshi Seo"]
s.email = ["sonots@gmail.com"]
s.homepage = "https://github.com/sonots/fluent-plugin-grep"
s.summary = "fluentd plugin to grep messages"
s.description = s.summary
s.licenses = ["MIT"]
s.rubyforge_project = "fluent-plugin-grep"
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_runtime_dependency "fluentd"
s.add_runtime_dependency "string-scrub" if RUBY_VERSION.to_f < 2.1
s.add_development_dependency "rake"
s.add_development_dependency "test-unit"
s.add_development_dependency "pry"
s.add_development_dependency "pry-nav"
end