studio3104/fluent-plugin-graphite

View on GitHub
fluent-plugin-graphite.gemspec

Summary

Maintainability
Test Coverage
# encoding: utf-8
$:.push File.expand_path('../lib', __FILE__)

Gem::Specification.new do |gem|
  gem.name        = 'fluent-plugin-graphite'
  gem.version     = '0.0.7'
  gem.authors     = ['Satoshi SUZUKI']
  gem.email       = 'studio3104.com@gmail.com'
  gem.homepage    = 'https://github.com/studio3104/fluent-plugin-graphite'
  gem.description = 'fluentd output plugin to send metrics to graphite'
  gem.summary     = gem.description
  gem.licenses    = ['MIT']
  gem.has_rdoc    = false

  gem.files       = `git ls-files`.split("\n")
  gem.test_files  = `git ls-files -- {test,spec,features}/*`.split("\n")
  gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  gem.require_paths = ['lib']

  gem.add_runtime_dependency 'fluentd', '>= 0.10.17'
  gem.add_runtime_dependency 'fluent-mixin-rewrite-tag-name'
  gem.add_runtime_dependency 'graphite-api'
  gem.add_development_dependency 'rake'
  gem.add_development_dependency 'test-unit', '~> 3.2.0'
end