Sha256: c730a64ee12a8617438457421467b0b21cc619d5825b988bcda995408d576f27
Contents?: true
Size: 1.15 KB
Versions: 1
Compression:
Stored size: 1.15 KB
Contents
lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "exception_notifier/fluent_logger_notifier/version" Gem::Specification.new do |spec| spec.name = "exception_notification-fluent_logger_notifier" spec.version = ExceptionNotifier::FluentLoggerNotifier::VERSION spec.authors = ["Shimpei Makimoto"] spec.email = ["makimoto@tsuyabu.in"] spec.summary = %q{A custom notifier for ExceptionNotification which notifies exceptions to Fluentd via fluent-logger} spec.homepage = "https://github.com/makimoto/exception_notification-fluent_logger_notifier" spec.license = "MIT" 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", "~> 1.3" spec.add_development_dependency "rake" spec.add_development_dependency "rspec" spec.add_development_dependency "pry" spec.add_dependency "exception_notification", "~> 4.0.1" spec.add_dependency "fluent-logger" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
exception_notification-fluent_logger_notifier-0.1.0 | exception_notification-fluent_logger_notifier.gemspec |