Skip to content

Commit

Permalink
adjust gemspec
Browse files Browse the repository at this point in the history
Signed-off-by: Daijiro Fukuda <[email protected]>
  • Loading branch information
daipom committed Jun 20, 2024
1 parent f41cadf commit cefbd46
Showing 1 changed file with 16 additions and 10 deletions.
26 changes: 16 additions & 10 deletions fluent-plugin-exec.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit cefbd46

Please sign in to comment.