Initial commit
parents
Showing
Gemfile
0 → 100644
source 'https://rubygems.org' | ||
# gem's dependencies are in .gemspec | ||
gemspec |
LICENSE.txt
0 → 100644
README.md
0 → 100644
fluent-plugin-bin.gemspec
0 → 100644
Gem::Specification.new do |gem| | ||
gem.name = "fluent-plugin-bin" | ||
gem.version = "0.1" | ||
gem.authors = ["Klaus Wölfel"] | ||
gem.email = ["klaus@nexedi.com"] | ||
gem.summary = %q{Fluentd input plugin for binary files} | ||
gem.description = %q{Fluentd input plugin to read binary files based on in_tail} | ||
gem.homepage = "https://lab.nexedi.com/klaus/fluent-plugin-bin" | ||
gem.license = "APLv2" | ||
gem.files = `git ls-files -z`.split("\x0") | ||
gem.require_paths = ["lib"] | ||
gem.add_runtime_dependency "fluentd", "~> 0.12" | ||
end |
lib/fluent/plugin/in_bin.rb
0 → 100644
Please register or sign in to comment