Sha256: bd657752ddd1e03186fc32c3b699b95b04e126f7c3ee252c6dcd736ae7bfe9f5

Contents?: true

Size: 1.29 KB

Versions: 1

Compression:

Stored size: 1.29 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          = "ach-fluent-plugin-sentry"
  spec.version       = "0.0.18"
  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"

  # Since Fluentd v0.14 requires ruby 2.1 or later.
  if defined?(RUBY_VERSION) && RUBY_VERSION < "2.1"
    spec.add_runtime_dependency "fluentd", "< 0.14"
  else
    spec.add_runtime_dependency "fluentd"
  end
  spec.add_runtime_dependency "sentry-ruby", "~> 4.6.5"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ach-fluent-plugin-sentry-0.0.18 fluent-plugin-sentry.gemspec