Sha256: f4a51a4e456ffec6b435bb4d65a67aba51085031d546d5143fa9e6df109a7c58

Contents?: true

Size: 1.5 KB

Versions: 1

Compression:

Stored size: 1.5 KB

Contents

# frozen_string_literal: true

lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'fluent/plugin/version'

Gem::Specification.new do |spec|
  spec.name = 'fluent-plugin-formatter-protobuf'
  spec.version = Fluent::Plugin::ProtobufFormatter::VERSION
  spec.authors = ['Ray Tung']
  spec.email = ['code@raytung.net']

  spec.summary = 'Protobuf formatter for Fluentd'
  spec.description = 'This is a Fluentd formatter plugin designed to convert Protobuf JSON into Protobuf binary'
  spec.homepage = 'https://github.com/raytung/fluent-plugin-formatter-protobuf'
  spec.license = 'Apache-2.0'
  spec.required_ruby_version = Gem::Requirement.new('>=2.7.1')

  spec.metadata['homepage_uri'] = spec.homepage
  spec.metadata['source_code_uri'] = 'https://github.com/raytung/fluent-plugin-formatter-protobuf'
  spec.metadata['changelog_uri'] = 'https://github.com/raytung/fluent-plugin-formatter-protobuf/blobl/main/CHANGELOG.md'

  test_files, files = `git ls-files -z`.split("\x0").partition do |f|
    f.match(%r{^(test|spec|features)/})
  end
  spec.files = files
  spec.executables = files.grep(%r{^bin/}) { |f| File.basename(f) }
  spec.test_files = test_files
  spec.require_paths = ['lib']

  spec.add_development_dependency 'bundler', '~> 2.2.22'
  spec.add_development_dependency 'rake', '~> 13.0.3'
  spec.add_development_dependency 'test-unit', '~> 3.3.7'
  spec.add_runtime_dependency 'fluentd', ['>= 1.0', '< 2']
  spec.add_runtime_dependency 'google-protobuf', ['~> 3.18']
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
fluent-plugin-formatter-protobuf-0.0.1 fluent-plugin-formatter-protobuf.gemspec