Sha256: 260cc00f58ada31e29cd8c386b7a00906c9ac752910da19955e393b0b6227d10
Contents?: true
Size: 1.23 KB
Versions: 1
Compression:
Stored size: 1.23 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) Gem::Specification.new do |spec| spec.name = "fluent-plugin-sentry" spec.version = "0.0.4" spec.authors = ["Kentaro Yoshida"] spec.email = ["y.ken.studio@gmail.com"] spec.summary = %q{Fluentd output plugin that sends aggregated errors/exception events to Sentry. Sentry is a event logging and aggregation platform.} spec.homepage = "https://github.com/y-ken/fluent-plugin-sentry" spec.license = "Apache-2.0" spec.files = `git ls-files`.split($/) spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ["lib"] spec.add_development_dependency "bundler" spec.add_development_dependency "rake" spec.add_development_dependency "webmock" spec.add_development_dependency "test-unit", ">= 3.1.0" spec.add_development_dependency "appraisal" if defined?(RUBY_VERSION) && RUBY_VERSION < '2' spec.add_runtime_dependency "fluentd", "< 0.14.0" else spec.add_runtime_dependency "fluentd" end spec.add_runtime_dependency "sentry-raven", "~> 0.15.0" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fluent-plugin-sentry-0.0.4 | fluent-plugin-sentry.gemspec |