Sha256: 7fa4a506c43c8d28cd9f64b889a60a91a8e25736e705b7747b95ac8b4e4fb66d
Contents?: true
Size: 1.1 KB
Versions: 1
Compression:
Stored size: 1.1 KB
Contents
# frozen_string_literal: true lib = File.expand_path('lib', __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) Gem::Specification.new do |spec| spec.name = 'fluent-plugin-raven' spec.version = '0.1.5' spec.authors = ['Yuto Suzuki'] spec.email = ['yuutoo.advance@gmail.com'] spec.summary = 'sentry output plugin for Fluentd' spec.description = spec.summary spec.homepage = 'https://github.com/mocyuto/fluent-plugin-raven' spec.license = 'Apache-2.0' 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.required_ruby_version = '>= 2.5' spec.add_runtime_dependency 'fluentd', ['>= 0.14.10', '< 2'] spec.add_runtime_dependency 'sentry-ruby', '< 5' spec.add_development_dependency 'bundler' spec.add_development_dependency 'rake' spec.add_development_dependency 'rubocop-rake' spec.add_development_dependency 'test-unit' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fluent-plugin-raven-0.1.5 | fluent-plugin-raven.gemspec |