-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Daijiro Fukuda <[email protected]>
- Loading branch information
Showing
1 changed file
with
16 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,22 +2,28 @@ lib = File.expand_path("../lib", __FILE__) | |
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) | ||
|
||
Gem::Specification.new do |spec| | ||
spec.name = "fluent-plugin-exec" | ||
spec.version = "0.1.0" | ||
spec.name = "fluent-plugin-in_exec-extended-to-handle-non-ascii" | ||
spec.version = "1.0.0" | ||
spec.authors = ["Daijiro Fukuda"] | ||
spec.email = ["[email protected]"] | ||
|
||
spec.summary = %q{TODO: Write a short summary, because Rubygems requires one.} | ||
spec.description = %q{TODO: Write a longer description or delete this line.} | ||
spec.homepage = "TODO: Put your gem's website or public repo URL here." | ||
spec.summary = %q{Extended version of the built-in in_exec plugin for collecting non-ASCII characters.} | ||
spec.description = <<~EOF | ||
The built-in in_exec plugin of the current Fluentd (v1.17.0) can not collect non-ASCII characters. | ||
This gem replaces the built-in in_exec plugin and enables it. | ||
Note: In the future, the built-in in_exec would have the same feature. | ||
This Gem is intended to be used for Fluentd up to that version. | ||
EOF | ||
spec.homepage = "https://github.com/clear-code/fluent-plugin-in_exec-extended-to-handle-non-ascii" | ||
spec.license = "Apache-2.0" | ||
|
||
test_files, files = `git ls-files -z`.split("\x0").partition do |f| | ||
f.match(%r{^(test|spec|features)/}) | ||
spec.files = Dir.chdir(__dir__) do | ||
`git ls-files -z`.split("\x0").reject do |f| | ||
(File.expand_path(f) == __FILE__) || | ||
f.start_with?(*%w[test/ spec/ features/ .git .circleci appveyor Gemfile]) | ||
end | ||
end | ||
spec.files = files | ||
spec.executables = files.grep(%r{^bin/}) { |f| File.basename(f) } | ||
spec.test_files = test_files | ||
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } | ||
spec.require_paths = ["lib"] | ||
|
||
spec.add_development_dependency "bundler", "~> 2.4.19" | ||
|